diff options
Diffstat (limited to 'src/base/checkFront.h')
| -rw-r--r-- | src/base/checkFront.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/base/checkFront.h b/src/base/checkFront.h index 85ed2fb..4e7781d 100644 --- a/src/base/checkFront.h +++ b/src/base/checkFront.h @@ -12,10 +12,10 @@ # include "list.h" # include "server.h" -extern list_t *newCheckFront(); -extern void addMsgInCheckFront(list_t * list, char *msg, int type, int id); -extern void eventMsgInCheckFront(client_t * client); -extern void delMsgInCheckFront(list_t * listCheckFront, int id); -extern void destroyCheckFront(list_t * p); +extern list_t *checkFront_new(); +extern void checkFront_add_msg(list_t * list, char *msg, int type, int id); +extern void checkFront_event(client_t * client); +extern void checkFront_del_msg(list_t * listCheckFront, int id); +extern void checkFront_destroy(list_t * p); #endif |