From 3b03f44001412b5b7026db05ed812f1ae3bc7b8e Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Tue, 11 Dec 2018 22:49:17 +0100 Subject: [PATCH] [PSDK] Add missing prototypes NetRegisterDomainNameChangeNotification and NetUnregisterDomainNameChangeNotification to lmconfig.h. --- sdk/include/psdk/lmconfig.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/sdk/include/psdk/lmconfig.h b/sdk/include/psdk/lmconfig.h index e3c95655b94..7d79558577c 100644 --- a/sdk/include/psdk/lmconfig.h +++ b/sdk/include/psdk/lmconfig.h @@ -12,6 +12,17 @@ typedef struct _CONFIG_INFO_0 { NET_API_STATUS WINAPI NetConfigGet(LPCWSTR,LPCWSTR,LPCWSTR,PBYTE*); NET_API_STATUS WINAPI NetConfigGetAll(LPCWSTR,LPCWSTR,PBYTE*); NET_API_STATUS WINAPI NetConfigSet(LPCWSTR,LPCWSTR,LPCWSTR,DWORD,DWORD,PBYTE,DWORD); + +NET_API_STATUS +WINAPI +NetRegisterDomainNameChangeNotification( + _Out_ PHANDLE NotificationEventHandle); + +NET_API_STATUS +WINAPI +NetUnregisterDomainNameChangeNotification( + _In_ HANDLE NotificationEventHandle); + #ifdef __cplusplus } #endif -- 2.17.1