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.

49 lines
908 B

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