Leaked source code of windows server 2003
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.

44 lines
826 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. syminfo.c
  5. --*/
  6. #include "ntos.h"
  7. #include <nt.h>
  8. #include <ntrtl.h>
  9. #include <nturtl.h>
  10. #include <heap.h>
  11. #include <windows.h>
  12. #include "verifier\public.h"
  13. #define DECLARE_TYPE(Name) Name _DECL_##Name
  14. //
  15. // verifier.dll types needed by verifier extensions.
  16. //
  17. DECLARE_TYPE (CRITICAL_SECTION_SPLAY_NODE);
  18. DECLARE_TYPE (RTL_SPLAY_LINKS);
  19. DECLARE_TYPE (AVRF_EXCEPTION_LOG_ENTRY);
  20. DECLARE_TYPE (AVRF_DEADLOCK_GLOBALS);
  21. DECLARE_TYPE (AVRF_DEADLOCK_RESOURCE);
  22. DECLARE_TYPE (AVRF_DEADLOCK_NODE);
  23. DECLARE_TYPE (AVRF_DEADLOCK_THREAD);
  24. DECLARE_TYPE (AVRF_THREAD_ENTRY);
  25. DECLARE_TYPE (AVRF_TRACKER);
  26. DECLARE_TYPE (AVRF_TRACKER_ENTRY);
  27. //
  28. // Make it build
  29. //
  30. int __cdecl main() {
  31. return 0;
  32. }