Basic.h
上传用户:cjw5120
上传日期:2022-05-11
资源大小:5032k
文件大小:1k
源码类别:

网络截获/分析

开发平台:

Visual C++

  1. //
  2. // This has been modified from Dennis Lee's original version
  3. //
  4. /*
  5.  * File: basic.h
  6.  *
  7.  * Header file for #defs and typedefs I often use
  8.  *
  9.  * Copyright (C) 1992-1997 Dennis Lee
  10.  */
  11. #ifndef BASIC_H
  12. #define BASIC_H
  13. //typedef enum {FALSE, TRUE}  boolean;
  14. #define schar               signed char
  15. #define sshort              signed short
  16. #define slong               signed long
  17. #define uchar               unsigned char
  18. #define ushort              unsigned short
  19. #define ulong               unsigned long
  20. #ifndef NULL
  21. #define NULL                0
  22. #endif
  23. #ifndef SEEK_SET
  24. #define SEEK_SET            0
  25. #endif
  26. #ifndef SEEK_CUR
  27. #define SEEK_CUR            1
  28. #endif
  29. #ifndef SEEK_END
  30. #define SEEK_END            2
  31. #endif
  32. #define READ_TYPE           "rb"
  33. #define WRITE_TYPE          "wb"
  34. #define IMPORT              extern
  35. #define EXPORT
  36. #define LOCAL               static
  37. #define GLOBAL
  38. #endif