File: tix_f.h

package info (click to toggle)
perl-tk 1%3A400.202-9
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 12,264 kB
  • ctags: 11,716
  • sloc: ansic: 131,714; perl: 27,874; tcl: 622; sh: 72; makefile: 61
file content (13 lines) | stat: -rw-r--r-- 297 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef TIX_VT
#define TIX_VT
typedef struct TixVtab
{
#define VFUNC(type,name,mem,args) type (*mem) args;
#define VVAR(type,name,mem)       type (*mem);
#include "tix.t"
#undef VFUNC
#undef VVAR
} TixVtab;
extern TixVtab *TixVptr;
extern TixVtab *TixVGet _ANSI_ARGS_((void));
#endif /* TIX_VT */