diff options
Diffstat (limited to 'src/map/chrif.h')
-rw-r--r-- | src/map/chrif.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/map/chrif.h b/src/map/chrif.h index faabedeed..a6a5fc6bf 100644 --- a/src/map/chrif.h +++ b/src/map/chrif.h @@ -1,11 +1,15 @@ // Copyright (c) Hercules Dev Team, licensed under GNU GPL. // See the LICENSE file // Portions Copyright (c) Athena Dev Teams + #ifndef _CHRIF_H_ #define _CHRIF_H_ + #include "../common/cbasetypes.h" #include <time.h> + enum sd_state { ST_LOGIN, ST_LOGOUT, ST_MAPCHANGE }; + struct auth_node { int account_id, char_id; int login_id1, login_id2, sex, fd; @@ -16,9 +20,6 @@ struct auth_node { enum sd_state state; //To track whether player was login in/out or changing maps. }; - - - /*===================================== * Interface : chrif.h * Generated by HerculesInterfaceMaker @@ -28,7 +29,7 @@ struct chrif_interface { /* vars */ - int chrif_connected; + int connected; int other_mapserver_count; //Holds count of how many other map servers are online (apart of this instance) [Skotlex] /* funcs */ @@ -78,7 +79,7 @@ struct chrif_interface { int (*flush_fifo) (void); void (*skillid2idx) (int fd); -} chrif_s; +}; struct chrif_interface *chrif; |