Windows NT 4.0 source code leak
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.

29 lines
947 B

4 years ago
  1. // VCBUDEFS.H - standard defs to be used for hungarian notation
  2. #ifndef _VC_VER_INC
  3. #include "..\include\vcver.h"
  4. #endif
  5. #ifndef VCBUDEFS_INCLUDED
  6. #define VCBUDEFS_INCLUDED
  7. typedef int BOOL;
  8. typedef unsigned UINT;
  9. typedef unsigned char BYTE;
  10. typedef unsigned long ULONG;
  11. typedef unsigned short USHORT;
  12. typedef ULONG INTV; // interface version number
  13. typedef ULONG IMPV; // implementation version number
  14. typedef ULONG SIG; // unique (across PDB instances) signature
  15. typedef ULONG AGE; // no. of times this instance has been updated
  16. typedef BYTE* PB; // pointer to some bytes
  17. typedef long CB; // count of bytes
  18. typedef char* SZ; // zero terminated string
  19. typedef const char* SZ_CONST;// const zero terminated string
  20. typedef char* PCH; // char ptr
  21. typedef USHORT IFILE; // file index
  22. typedef USHORT IMOD; // module index
  23. typedef USHORT ISECT; // section index
  24. typedef USHORT LINE; // line number
  25. typedef long OFF; // offset
  26. #endif