typedefs.h.svn-base
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:1k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. /*
  2.  * OpenKore - Padded Packet Emulator.
  3.  * Copyright (c) 2007 kLabMouse, Japplegame, and many other contributors
  4.  *
  5.  * This program is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU General Public License
  7.  * as published by the Free Software Foundation; either version 2
  8.  * of the License, or (at your option) any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13.  * See http://www.gnu.org/licenses/gpl.html for the full license.
  14.  */
  15. #ifndef _ROPP_TYPEDEFS_H_
  16. #define _ROPP_TYPEDEFS_H_
  17. typedef unsigned char  byte; // unsigned 8-bit type
  18. typedef unsigned short word; // unsigned 16-bit type
  19. typedef unsigned long  dword; // unsigned 32-bit type
  20. #ifdef __cplusplus
  21. #define CEXTERN extern "C"
  22. #else
  23. #define CEXTERN
  24. #endif
  25. #ifndef NULL
  26. #ifdef __cplusplus
  27. #define NULL 0
  28. #else
  29. #define NULL ((void *) 0)
  30. #endif
  31. #endif
  32. #endif /* _ROPP_TYPEDEFS_H_ */