anongame_maplists.h
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * This program is free software; you can redistribute it and/or
  3.  * modify it under the terms of the GNU General Public License
  4.  * as published by the Free Software Foundation; either version 2
  5.  * of the License, or (at your option) any later version.
  6.  *
  7.  * This program is distributed in the hope that it will be useful,
  8.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.  * GNU General Public License for more details.
  11.  *
  12.  * You should have received a copy of the GNU General Public License
  13.  * along with this program; if not, write to the Free Software
  14.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  15.  */
  16. #ifndef INCLUDED_ANONGAME_MAPLISTS_TYPES
  17. #define INCLUDED_ANONGAME_MAPLISTS_TYPES
  18. #endif
  19. /*****/
  20. #ifndef JUST_NEED_TYPES
  21. #ifndef INCLUDED_ANONGAME_MAPLISTS_PROTOS
  22. #define INCLUDED_ANONGAME_MAPLISTS_PROTOS
  23. #define JUST_NEED_TYPES
  24. #include "common/packet.h"
  25. #undef JUST_NEED_TYPES
  26. extern int anongame_maplists_create(void);
  27. extern void anongame_maplists_destroy(void);
  28. extern int maplists_get_totalmaps(char const * clienttag);
  29. extern int maplists_get_totalmaps_by_queue(char const * clienttag, int queue);
  30. extern void maplists_add_maps_to_packet(t_packet * packet, char const * clienttag);
  31. extern void maplists_add_map_info_to_packet(t_packet * rpacket, char const * clienttag, int queue);
  32. extern char * maplists_get_map(int queue, char const * clienttag, int mapnumber);
  33. extern int anongame_add_tournament_map(char const * clienttag, char * mapname);
  34. extern void anongame_tournament_maplists_destroy(void);
  35. #endif
  36. #endif