The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#include "tk.h"
#include "tkInt.h"
#include "tkOption.h"
#include "tkOption_f.h"
static unsigned TkoptionVSize(void) { return sizeof(TkoptionVtab);}
static TkoptionVtab TkoptionVtable =
{
 TkoptionVSize,
#define VFUNC(type,name,mem,args) name,
#define VVAR(type,name,mem)      &name,
#include "tkOption.t"
#undef VFUNC
#undef VVAR
};
TkoptionVtab *TkoptionVptr;
TkoptionVtab *TkoptionVGet() { return TkoptionVptr = &TkoptionVtable;}