home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / Graphics / ToyViewer-2.6a / src / Exttab.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-28  |  262 b   |  16 lines

  1. #import <appkit/appkit.h>
  2.  
  3. @interface Exttab : Object
  4. {
  5.     int entry;
  6.     char **table;
  7.     int *args;
  8. }
  9.  
  10. - init;
  11. - (int)readExtData: (const char *)filename;
  12. - (char **)table;
  13. - (int)entry;
  14. - (char **)execListAlloc: (const char *)type with: (const char *)filename;
  15. @end
  16.