diff options
| author | Tomas Chvatal (scarabeus) <tomas.chvatal@gmail.com> | 2008-10-23 00:09:21 +0200 |
|---|---|---|
| committer | Tomas Chvatal (scarabeus) <tomas.chvatal@gmail.com> | 2008-10-23 00:09:21 +0200 |
| commit | 6a0565944376426ded71849df09527da077dfc94 (patch) | |
| tree | 2f9e1f664febc298b61626a613366330dfe0bd6e /src/base/modules.h | |
| parent | 130d45bfc935da1702a7b5c246a099ea3b4a0bdf (diff) | |
Ups forget to fix header files.
Diffstat (limited to 'src/base/modules.h')
| -rw-r--r-- | src/base/modules.h | 79 |
1 files changed, 41 insertions, 38 deletions
diff --git a/src/base/modules.h b/src/base/modules.h index e5a15f1..f0cbfb1 100644 --- a/src/base/modules.h +++ b/src/base/modules.h @@ -19,58 +19,61 @@ typedef struct export_fce_s { - int (*fce_getValue)(char *line, char *env, char *val, int len); + int (*fce_getValue) (char *line, char *env, char *val, int len); #ifndef PUBLIC_SERVER - image_t* (*fce_getImage)(char *group, char *name); + image_t *(*fce_getImage) (char *group, char *name); - void (*fce_addLayer)(image_t *img, - int x,int y, int px,int py, - int w,int h, int player); + void (*fce_addLayer) (image_t * img, + int x, int y, int px, int py, + int w, int h, int player); #endif - int (*fce_getNetTypeGame)(); - int (*fce_loadDepModule)(char *name); - void (*fce_addToShareFce)(char *name, void *function); - void* (*fce_getShareFce)(char *name); - - void (*fce_getTuxProportion)(tux_t *tux, int *x,int *y, int *w, int *h); - void (*fce_setTuxProportion)(tux_t *tux, int x, int y); - tux_t* (*fce_getTuxID)(list_t *listTux, int id); - void (*fce_actionTux)(tux_t *tux, int action); - - arena_t* (*fce_getCurrentArena)(); - int (*fce_conflictSpace)(int x1,int y1,int w1,int h1,int x2,int y2,int w2,int h2); - int (*fce_isFreeSpace)(arena_t *arena, int x, int y, int w, int h); - void (*fce_findFreeSpace)(arena_t *arena, int *x, int *y, int w, int h); - void (*fce_proto_send_module_server)(int type, client_t *client, char *msg); - void (*fce_proto_send_module_client)(char *msg); - - my_time_t (*fce_getMyTime)(); - - void (*fce_destroyShot)(shot_t *p); - void (*fce_boundBombBall)(shot_t *shot); - void (*fce_transformOnlyLasser)(shot_t *shot); + int (*fce_getNetTypeGame) (); + int (*fce_loadDepModule) (char *name); + void (*fce_addToShareFce) (char *name, void *function); + void *(*fce_getShareFce) (char *name); + + void (*fce_getTuxProportion) (tux_t * tux, int *x, int *y, int *w, + int *h); + void (*fce_setTuxProportion) (tux_t * tux, int x, int y); + tux_t *(*fce_getTuxID) (list_t * listTux, int id); + void (*fce_actionTux) (tux_t * tux, int action); + + arena_t *(*fce_getCurrentArena) (); + int (*fce_conflictSpace) (int x1, int y1, int w1, int h1, int x2, int y2, + int w2, int h2); + int (*fce_isFreeSpace) (arena_t * arena, int x, int y, int w, int h); + void (*fce_findFreeSpace) (arena_t * arena, int *x, int *y, int w, int h); + void (*fce_proto_send_module_server) (int type, client_t * client, + char *msg); + void (*fce_proto_send_module_client) (char *msg); + + my_time_t(*fce_getMyTime) (); + + void (*fce_destroyShot) (shot_t * p); + void (*fce_boundBombBall) (shot_t * shot); + void (*fce_transformOnlyLasser) (shot_t * shot); } export_fce_t; typedef struct module_s { - char *name; + char *name; #ifndef __WIN32__ - void *image; + void *image; #else - HINSTANCE *image; + HINSTANCE *image; #endif - int (*fce_init)(export_fce_t *p); + int (*fce_init) (export_fce_t * p); #ifndef PUBLIC_SERVER - int (*fce_draw)(int x, int y,int w, int h); + int (*fce_draw) (int x, int y, int w, int h); #endif - int (*fce_event)(); - int (*fce_isConflict)(int x, int y, int w, int h); - void (*fce_cmd)(char *line); - void (*fce_recvMsg)(char *msg); - int (*fce_destroy)(); + int (*fce_event) (); + int (*fce_isConflict) (int x, int y, int w, int h); + void (*fce_cmd) (char *line); + void (*fce_recvMsg) (char *msg); + int (*fce_destroy) (); } module_t; @@ -86,4 +89,4 @@ extern int isConflictModule(int x, int y, int w, int h); extern int recvMsgModule(char *msg); extern void quitModule(); -#endif +#endif |