LdrUnregisterDllNotification function

[This function may be changed or removed from Windows without further notice.]

Cancels DLL load notification previously registered by calling the LdrRegisterDllNotification function.

Syntax

NTSTATUS NTAPI LdrUnregisterDllNotification(
  _In_ PVOID Cookie
);

Parameters

Cookie [in]

A pointer to the callback identifier received from the LdrRegisterDllNotification call that registered for notification.

Return value

Returns an NTSTATUS or error code.

If the function succeeds, it returns STATUS_SUCCESS.

If the callback function is not found, the function returns STATUS_DLL_NOT_FOUND.

The forms and significance of NTSTATUS error codes are listed in the Ntstatus.h header file available in the WDK, and are described in the WDK documentation.

Remarks

This function has no associated header file. The associated import library, Ntdll.lib, is available in the WDK. You can also use the LoadLibrary and GetProcAddress functions to dynamically link to Ntdll.dll.

Requirements

Requirement Value
Minimum supported client
Windows Vista [desktop apps only]
Minimum supported server
Windows Server 2008 [desktop apps only]
DLL
Ntdll.dll

See also

LdrRegisterDllNotification