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.

44 lines
716 B

  1. /*++
  2. Copyright (C) 1997-2001 Microsoft Corporation
  3. Module Name:
  4. Abstract:
  5. History:
  6. --*/
  7. #ifndef WMIEXT_H_
  8. #define WMIEXT_H_
  9. #ifdef WMIEXT_EXPORTS
  10. #define WMIEXT_API __declspec(dllexport)
  11. #else
  12. #define WMIEXT_API __declspec(dllimport)
  13. #endif
  14. extern WINDBG_EXTENSION_APIS ExtensionApis;
  15. extern "C" WMIEXT_API void wmiver(HANDLE,
  16. HANDLE,
  17. DWORD,
  18. PWINDBG_EXTENSION_APIS,
  19. LPSTR);
  20. extern "C" WMIEXT_API void mermaid(HANDLE,
  21. HANDLE,
  22. DWORD,
  23. PWINDBG_EXTENSION_APIS,
  24. LPSTR);
  25. extern "C" WMIEXT_API void mem(HANDLE,
  26. HANDLE,
  27. DWORD,
  28. PWINDBG_EXTENSION_APIS,
  29. LPSTR);
  30. #endif /*WMIEXT_H_*/