version 1.3 | | version 1.4 |
---|
| | |
void initContextStack(void); | | void initContextStack(void); |
void pushContext(CFPContext *context); | | void pushContext(CFPContext *context); |
CFPContext *popContext(void); | | CFPContext *popContext(void); |
int initPlugin(const char *iversion, f_plug_api gethooksptr); | | CF_PLUGIN int initPlugin(const char *iversion, f_plug_api gethooksptr); |
void *getPluginProperty(int *type, ...); | | CF_PLUGIN void *getPluginProperty(int *type, ...); |
int runPluginCommand(object *op, char *params); | | CF_PLUGIN int runPluginCommand(object *op, char *params); |
int postInitPlugin(void); | | CF_PLUGIN int postInitPlugin(void); |
void *globalEventListener(int *type, ...); | | CF_PLUGIN void *globalEventListener(int *type, ...); |
void *eventListener(int *type, ...); | | CF_PLUGIN void *eventListener(int *type, ...); |
int closePlugin(void); | | CF_PLUGIN int closePlugin(void); |
/* ../common/plugin_common.c */ | | /* ../common/plugin_common.c */ |
int cf_init_plugin(f_plug_api getHooks); | | int cf_init_plugin(f_plug_api getHooks); |
void *cf_map_get_property(mapstruct *map, int propcode); | | void *cf_map_get_property(mapstruct *map, int propcode); |