22 lines
865 B
C
22 lines
865 B
C
/* cfpython.c */
|
|
CF_PLUGIN int initPlugin(const char *iversion, f_plug_api gethooksptr);
|
|
CF_PLUGIN void *getPluginProperty(int *type, ...);
|
|
CF_PLUGIN int cfpython_runPluginCommand(object *op, char *params);
|
|
CF_PLUGIN int postInitPlugin(void);
|
|
CF_PLUGIN void *cfpython_globalEventListener(int *type, ...);
|
|
CF_PLUGIN void *eventListener(int *type, ...);
|
|
CF_PLUGIN int closePlugin(void);
|
|
/* cfpython_archetype.c */
|
|
PyObject *Crossfire_Archetype_wrap(archetype *what);
|
|
/* cfpython_object.c */
|
|
void init_object_assoc_table(void);
|
|
PyObject *Crossfire_Object_wrap(object *what);
|
|
/* cfpython_party.c */
|
|
PyObject *Crossfire_Party_wrap(partylist *what);
|
|
/* cfpython_region.c */
|
|
PyObject *Crossfire_Region_wrap(region *what);
|
|
/* cfpython_map.c */
|
|
void init_map_assoc_table(void);
|
|
void Handle_Map_Unload_Hook(Crossfire_Map *map);
|
|
PyObject *Crossfire_Map_wrap(mapstruct *what);
|