Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
580 B

  1. //
  2. // MODULE : STDEFS.H
  3. // PURPOSE : Common typedefs
  4. // AUTHOR : JBS Yadawa
  5. // CREATED : 7/20/96
  6. //
  7. //
  8. // Copyright (C) 1996 SGS-THOMSON Microelectronics
  9. //
  10. //
  11. // REVISION HISTORY :
  12. //
  13. // DATE :
  14. //
  15. // COMMENTS :
  16. //
  17. #ifndef __STDEFS_H
  18. #define __STDEFS_H
  19. #define NEARAPI
  20. #define FARAPI
  21. #define Trace 5
  22. //typedef BOOLEAN BOOL;
  23. typedef ULONG DWORD;
  24. typedef USHORT WORD;
  25. //typedef USHORT UINT;
  26. typedef UCHAR BYTE;
  27. typedef PUCHAR LPBYTE;
  28. typedef PUSHORT LPWORD;
  29. typedef PULONG LPDWORD;
  30. //#define FAR
  31. //#define NEAR
  32. #define TRAP _asm int 3;
  33. #endif // #ifndef __STDEFS_H
  34.