You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There doesn't appear to be an easy way for this to simply become:
extern"C"{pubfnmeow(a:u16);}
As renaming via ParseCallbacks doesn't appear to work.
It'd be highly unfortunate to have to hack around it like this:
// Pretend we already included the header with the type aliases#define_LIB_TYPES_H#include<stdint.h>// Do the alias in the preprocessor instead#defineu16 uint16_t
// Include the actual header#include<lib.h>