Go to the source code of this file.
|
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) |
|
◆ REVISED_CONFIG_APIS
◆ CONFIG_INFO_0
◆ LPCONFIG_INFO_0
◆ PCONFIG_INFO_0
◆ NetConfigGet()
◆ NetConfigGetAll()
◆ NetConfigSet()
◆ NetRegisterDomainNameChangeNotification()
Definition at line 23 of file misc.c.
25{
28
29 TRACE(
"NetRegisterDomainNameChangeNotification(%p)\n",
30 NotificationEventHandle);
31
32 if (NotificationEventHandle ==
NULL)
34
38
40 NotificationEventHandle);
42 {
45 }
46
48
50}
#define NT_SUCCESS(StatCode)
#define ERROR_INVALID_PARAMETER
NET_API_STATUS WINAPI NetpNtStatusToApiStatus(_In_ NTSTATUS Status)
NTSTATUS NTAPI LsaRegisterPolicyChangeNotification(POLICY_NOTIFICATION_INFORMATION_CLASS InformationClass, HANDLE NotificationEventHandle)
@ PolicyNotifyDnsDomainInformation
HANDLE WINAPI DECLSPEC_HOTPATCH CreateEventW(IN LPSECURITY_ATTRIBUTES lpEventAttributes OPTIONAL, IN BOOL bManualReset, IN BOOL bInitialState, IN LPCWSTR lpName OPTIONAL)
DWORD WINAPI GetLastError(void)
_Out_ PHANDLE EventHandle
◆ NetUnregisterDomainNameChangeNotification()
Definition at line 120 of file misc.c.
122{
124
125 TRACE(
"NetUnregisterDomainNameChangeNotification(%p)\n",
126 NotificationEventHandle);
127
128 if (NotificationEventHandle ==
NULL)
130
132 NotificationEventHandle);
133
135}
NTSTATUS NTAPI LsaUnregisterPolicyChangeNotification(POLICY_NOTIFICATION_INFORMATION_CLASS InformationClass, HANDLE NotificationEventHandle)