ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/plugins/cfpython/include/cfpython_proto.h
Revision: 1.4
Committed: Thu Sep 7 20:11:26 2006 UTC (20 years ago) by pippijn
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +0 -0 lines
State: FILE REMOVED
Log Message:
Entirely removed cfpython.

File Contents

# User Rev Content
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 elmex 1.3 extern "C" int initPlugin(const char *iversion, f_plug_api gethooksptr);
7     extern "C" void *getPluginProperty(int *type, ...);
8     extern "C" int runPluginCommand(object *op, char *params);
9     extern "C" int postInitPlugin(void);
10     extern "C" void *globalEventListener(int *type, ...);
11     extern "C" void *eventListener(int *type, ...);
12     extern "C" int closePlugin(void);
13 root 1.2 /* 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);