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 XLIB_VT
#define XLIB_VT
typedef struct XlibVtab
{
 unsigned (*tabSize)(void);
#define VFUNC(type,name,mem,args) type (*mem) args;
#define VVAR(type,name,mem)       type (*mem);
#include "Xlib.t"
#undef VFUNC
#undef VVAR
} XlibVtab;
extern XlibVtab *XlibVptr;
extern XlibVtab *XlibVGet(void);
#endif /* XLIB_VT */