TypeDef.h
上传用户:cydong117
上传日期:2009-11-10
资源大小:638k
文件大小:1k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. #if !defined _TYPEDEF_H
  2. #define _TYPEDEF_H
  3. #define MAX_DUPLE_COUNT 5
  4. #define ID_TIMER_1 101
  5. #define ID_AMBIANCE_TIMER 102
  6. #define WM_USER_ENDTIMER WM_USER+100
  7. #define WM_DSHOW_NOTIFY WM_APP + 500
  8. #define DELETEARRAY(x) if(x != NULL) { delete [] x; x = NULL; }
  9. typedef struct
  10. {
  11. int x;
  12. int y;
  13. } Position;
  14. #pragma pack(1)
  15. typedef struct
  16. {
  17. signed short int ID; // 2 bytes
  18. char  Des[14]; // 14 bytes
  19. } WAVELIST; // 16 bytes
  20. typedef struct
  21. {
  22. char Title[40]; // 40 bytes
  23. char TargetDir[10]; // 10 bytes
  24. unsigned int FieldCount; //  4 bytes
  25. unsigned int ListCount; //  4 bytes  
  26. } WAVELISTHEADER; // 58 bytes
  27. #pragma pack(8)
  28. #endif //_TYPEDEF_H