home *** CD-ROM | disk | FTP | other *** search
/ ST-Computer Leser-CD 2001 January / LCD_01_2001.iso / develop / agnus143 / agnus / src / oc_test / module.i < prev    next >
Encoding:
Text File  |  1993-10-22  |  251 b   |  21 lines

  1. /*
  2.     module.i -- This file contains the applications classes
  3. */
  4.  
  5. $classes 
  6.     Cstr, Pstr
  7. $
  8.  
  9. /* The two types Cstr and Pstr are of fixed size and 
  10.    therefore not very usefull. */
  11.  
  12. $dat Cstr
  13.     Char    value[250];
  14. $
  15.  
  16. $dat Pstr
  17.     Int        len;
  18.     Char    value[250];
  19. $
  20.  
  21.