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.

39 lines
679 B

  1. /*++ BUILD Version: 0001
  2. *
  3. * WOW v1.0
  4. *
  5. * Copyright (c) 1991, Microsoft Corporation
  6. *
  7. * WOWTH.H
  8. * 16-bit ToolHelp thunked API argument structures
  9. *
  10. * History:
  11. * 12-Nov-92 Dave Hart (davehart) created using wowkrn.h as template
  12. --*/
  13. /* ToolHelp API IDs
  14. */
  15. #define FUN_CLASSFIRST 1
  16. #define FUN_CLASSNEXT 2
  17. /* XLATOFF */
  18. #pragma pack(2)
  19. /* XLATON */
  20. typedef struct _CLASSFIRST16 { /* th1 */
  21. VPVOID f1;
  22. } CLASSFIRST16;
  23. typedef CLASSFIRST16 UNALIGNED *PCLASSFIRST16;
  24. typedef struct _CLASSNEXT16 { /* th2 */
  25. VPVOID f1;
  26. } CLASSNEXT16;
  27. typedef CLASSNEXT16 UNALIGNED *PCLASSNEXT16;
  28. /* XLATOFF */
  29. #pragma pack()
  30. /* XLATON */