blob: 8eef38bdcb119eaafc9b25a5dce566717ca5ea20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef TKINTPLATDECLS_VT
#define TKINTPLATDECLS_VT
typedef struct TkintplatdeclsVtab
{
unsigned (*tabSize)(void);
#define VFUNC(type,name,mem,args) type (*mem) args;
#define VVAR(type,name,mem) type (*mem);
#include "tkIntPlatDecls.t"
#undef VFUNC
#undef VVAR
} TkintplatdeclsVtab;
extern TkintplatdeclsVtab *TkintplatdeclsVptr;
extern TkintplatdeclsVtab *TkintplatdeclsVGet(void);
#endif /* TKINTPLATDECLS_VT */
|