The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#ifndef TKINT_VT
#define TKINT_VT
typedef struct TkintVtab
{
 unsigned (*tabSize)(void);
#define VFUNC(type,name,mem,args) type (*mem) args;
#define VVAR(type,name,mem)       type (*mem);
#include "tkInt.t"
#undef VFUNC
#undef VVAR
} TkintVtab;
extern TkintVtab *TkintVptr;
extern TkintVtab *TkintVGet(void);
#endif /* TKINT_VT */