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
49 lines
908 B
//
|
|
// Copyright (c) Microsoft Corporation
|
|
//
|
|
#include "pch.h"
|
|
#include "dloadexcept.h"
|
|
#pragma hdrstop
|
|
|
|
#define _WMI_SOURCE_
|
|
#include <wmium.h>
|
|
|
|
static
|
|
ULONG
|
|
WMIAPI
|
|
WmiNotificationRegistrationA(
|
|
IN LPGUID Guid,
|
|
IN BOOLEAN Enable,
|
|
IN PVOID DeliveryInfo,
|
|
IN ULONG_PTR DeliveryContext,
|
|
IN ULONG Flags
|
|
)
|
|
{
|
|
return DelayLoad_GetWin32Error();
|
|
}
|
|
|
|
static
|
|
ULONG
|
|
WMIAPI
|
|
WmiNotificationRegistrationW(
|
|
IN LPGUID Guid,
|
|
IN BOOLEAN Enable,
|
|
IN PVOID DeliveryInfo,
|
|
IN ULONG_PTR DeliveryContext,
|
|
IN ULONG Flags
|
|
)
|
|
{
|
|
return DelayLoad_GetWin32Error();
|
|
}
|
|
|
|
|
|
//
|
|
// !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
|
|
//
|
|
DEFINE_PROCNAME_ENTRIES(wmi)
|
|
{
|
|
DLPENTRY(WmiNotificationRegistrationA)
|
|
DLPENTRY(WmiNotificationRegistrationW)
|
|
};
|
|
|
|
DEFINE_PROCNAME_MAP(wmi)
|