ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/plugins/cfpython/include/cfpython_proto.h
Revision: 1.2
Committed: Sun May 7 13:56:23 2006 UTC (18 years, 2 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: LAST_C_VERSION, difficulty_fix_merge_060810_2300
Branch point for: difficulty_fix
Changes since 1.1: +20 -6 lines
Log Message:
distconf

File Contents

# Content
1 /* cfpython.c */
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 PyObject *Crossfire_Object_wrap(object *what);
17 /* 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);