diff options
| author | Dusan Durech <dusan@debian.debian> | 2009-04-12 14:29:51 +0200 |
|---|---|---|
| committer | Dusan Durech <dusan@debian.debian> | 2009-04-12 14:29:51 +0200 |
| commit | 876fc624df9728ee0feee26e1b31b53ed9ef3326 (patch) | |
| tree | e20814ab6d07fb892284dcee11bc492532bdabaa /src/client/chat.h | |
| parent | dff1cbc31ca8d585c01f5bebd08e50cf07fd2b0c (diff) | |
convert all name function from oldName to new_name
Diffstat (limited to 'src/client/chat.h')
| -rw-r--r-- | src/client/chat.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/client/chat.h b/src/client/chat.h index 9022466..a11b286 100644 --- a/src/client/chat.h +++ b/src/client/chat.h @@ -14,12 +14,12 @@ # define CHAT_LOCATION_X (WINDOW_SIZE_X/2 - CHAT_SIZE_X/2) # define CHAT_LOCATION_Y (WINDOW_SIZE_Y/2 - CHAT_SIZE_Y/2) -extern void initChat(); -extern void drawChat(); -extern void eventChat(); -extern void addToChat(char *s); -extern bool_t isChatActive(); -extern bool_t isRecivedNewMsg(); -extern void quitChat(); +extern void chat_init(); +extern void chat_draw(); +extern void chat_event(); +extern void chat_add(char *s); +extern bool_t chat_is_active(); +extern bool_t chat_is_recived_new_msg(); +extern void chat_quit(); #endif |