| 1 |
root |
1.1 |
/* cfpython.c */ |
| 2 |
root |
1.2 |
void initContextStack(void); |
| 3 |
|
|
void pushContext(CFPContext *context); |
| 4 |
|
|
CFPContext *popContext(void); |
| 5 |
|
|
void freeContext(CFPContext *context); |
| 6 |
|
|
int initPlugin(const char *iversion, f_plug_api gethooksptr); |
| 7 |
|
|
void *getPluginProperty(int *type, ...); |
| 8 |
|
|
int runPluginCommand(object *op, char *params); |
| 9 |
|
|
int postInitPlugin(void); |
| 10 |
|
|
void *globalEventListener(int *type, ...); |
| 11 |
|
|
void *eventListener(int *type, ...); |
| 12 |
|
|
int closePlugin(void); |
| 13 |
|
|
/* cfpython_archetype.c */ |
| 14 |
|
|
PyObject *Crossfire_Archetype_wrap(archetype *what); |
| 15 |
|
|
/* cfpython_object.c */ |
| 16 |
root |
1.1 |
PyObject *Crossfire_Object_wrap(object *what); |
| 17 |
root |
1.2 |
/* cfpython_party.c */ |
| 18 |
|
|
PyObject *Crossfire_Party_wrap(partylist *what); |
| 19 |
|
|
/* cfpython_region.c */ |
| 20 |
|
|
PyObject *Crossfire_Region_wrap(region *what); |
| 21 |
|
|
/* cfpython_map.c */ |
| 22 |
|
|
PyObject *Crossfire_Map_wrap(mapstruct *what); |