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.

45 lines
779 B

  1. #include "pch.h"
  2. #pragma hdrstop
  3. #define _WMI_SOURCE_
  4. #include <wmium.h>
  5. static
  6. ULONG
  7. WMIAPI
  8. WmiNotificationRegistrationA(
  9. IN LPGUID Guid,
  10. IN BOOLEAN Enable,
  11. IN PVOID DeliveryInfo,
  12. IN ULONG_PTR DeliveryContext,
  13. IN ULONG Flags
  14. )
  15. {
  16. return ERROR_PROC_NOT_FOUND;
  17. }
  18. static
  19. ULONG
  20. WMIAPI
  21. WmiNotificationRegistrationW(
  22. IN LPGUID Guid,
  23. IN BOOLEAN Enable,
  24. IN PVOID DeliveryInfo,
  25. IN ULONG_PTR DeliveryContext,
  26. IN ULONG Flags
  27. )
  28. {
  29. return ERROR_PROC_NOT_FOUND;
  30. }
  31. //
  32. // !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
  33. //
  34. DEFINE_PROCNAME_ENTRIES(wmi)
  35. {
  36. DLPENTRY(WmiNotificationRegistrationA)
  37. DLPENTRY(WmiNotificationRegistrationW)
  38. };
  39. DEFINE_PROCNAME_MAP(wmi)