home *** CD-ROM | disk | FTP | other *** search
/ Netrunner 2004 October / NETRUNNER0410.ISO / regular / ActivePerl-5.8.4.810-MSWin32-x86.msi / _acafef5af3e65fd5a1704d44c051ac00 < prev    next >
Encoding:
Text File  |  2004-06-01  |  325 b   |  15 lines

  1. #ifndef TIX_VT
  2. #define TIX_VT
  3. typedef struct TixVtab
  4. {
  5.  unsigned (*tabSize)(void);
  6. #define VFUNC(type,name,mem,args) type (*mem) args;
  7. #define VVAR(type,name,mem)       type (*mem);
  8. #include "tix.t"
  9. #undef VFUNC
  10. #undef VVAR
  11. } TixVtab;
  12. extern TixVtab *TixVptr;
  13. extern TixVtab *TixVGet(void);
  14. #endif /* TIX_VT */
  15.