#ifndef CHAR_INT_CLAN_H_ #define CHAR_INT_CLAN_H_ #include "common/db.h" #include "common/mmo.h" struct inter_clan_interface{ int (*sql_init)(void); void (*sql_final)(); int (*parse_frommap)( int fd ); struct clan* (*fromsql)( int clan_id ); }; #ifdef HERCULES_CORE void inter_clan_defaults(void); #endif // HERCULES_CORE HPShared struct inter_clan_interface *inter_clan; #endif