Def.h
上传用户:qiulin1960
上传日期:2013-10-16
资源大小:2844k
文件大小:1k
源码类别:

Windows CE

开发平台:

Windows_Unix

  1. //
  2. // Copyright (c) Microsoft Corporation.  All rights reserved.
  3. //
  4. //
  5. // Use of this source code is subject to the terms of the Microsoft end-user
  6. // license agreement (EULA) under which you licensed this SOFTWARE PRODUCT.
  7. // If you did not accept the terms of the EULA, you are not authorized to use
  8. // this source code. For a copy of the EULA, please see the LICENSE.RTF on your
  9. // install media.
  10. //
  11. /*++
  12. THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  13. ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  14. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  15. PARTICULAR PURPOSE.
  16. --*/
  17. #ifndef __DEF_H__
  18. #define __DEF_H__
  19. #define U32 unsigned int
  20. #define U16 unsigned short
  21. #define S32 int
  22. #define S16 short int
  23. #define U8  unsigned char
  24. #define S8  char
  25. typedef unsigned char BOOL;
  26. typedef unsigned char UCHAR;
  27. typedef UCHAR *PUCHAR;
  28. typedef unsigned long DWORD;
  29. typedef DWORD *PDWORD;
  30. typedef unsigned char   BYTE;
  31. typedef unsigned short  WORD;
  32. typedef unsigned long ULONG;
  33. typedef ULONG *PULONG;
  34. typedef unsigned short USHORT;
  35. typedef USHORT *PUSHORT;
  36. typedef BYTE *LPBYTE;
  37. typedef void *PVOID;
  38. #define TRUE  1   
  39. #define FALSE  0
  40. #endif /*__DEF_H__*/