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.

31 lines
574 B

  1. // instant hungarian
  2. // base types
  3. //
  4. // #define FAR far
  5. // #define NEAR near
  6. // #define TRUE 1
  7. // #define FALSE 0
  8. // typedef void VOID;
  9. // typedef unsigned char BYTE;
  10. // typedef unsigned short WORD;
  11. // typedef int INT;
  12. // typedef unsigned long DWORD;
  13. // typedef long LONG;
  14. // typedef unsigned short BOOL;
  15. //typedef USHORT WORD;
  16. //typedef ULONG DWORD;
  17. // pointer types
  18. //
  19. typedef char NEAR * SZ;
  20. typedef char FAR * LSZ;
  21. typedef void FAR * LPV;
  22. typedef BYTE FAR * LPB;
  23. //typedef char FAR * LPCH;
  24. #define API NEAR pascal