// stubs to get the addresses of the defined QB64 SUBs/FUNCs
// there must be an entry for each SUB/FUNC you need
int16 FUNC_TEST(); ptrszint GetHook_Test(void) {return (ptrszint)&FUNC_TEST;}
int16 FUNC_TEST2(); ptrszint GetHook_Test2(void) {return (ptrszint)&FUNC_TEST2;}
// call the function via its address, which on QB64 side may be stored
// in a _OFFSET variable, if you need other return types, then you may
// copy this typdef & function with slighly different names and redefine
// the int16 type as needed, however no tests yet how to pass arguments
typedef int16 (*fp)();
int16 CallHook(ptrszint hook) {
fp func = (fp)hook;
return func();
}