Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ldrdllnotification.md #1843

Open
wants to merge 1 commit into
base: docs
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions desktop-src/DevNotes/ldrdllnotification.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,16 +63,17 @@ The reason that the notification callback function was called. This parameter ca

A pointer to a constant **LDR\_DLL\_NOTIFICATION** union that contains notification data. This union has the following definition:

``` syntax
```C++
typedef union _LDR_DLL_NOTIFICATION_DATA {
LDR_DLL_LOADED_NOTIFICATION_DATA Loaded;
LDR_DLL_UNLOADED_NOTIFICATION_DATA Unloaded;
} LDR_DLL_NOTIFICATION_DATA, *PLDR_DLL_NOTIFICATION_DATA;
typedef const LDR_DLL_NOTIFICATION_DATA *PCLDR_DLL_NOTIFICATION_DATA;
```

The **LDR\_DLL\_LOADED\_NOTIFICATION\_DATA** structure has the following definition:

``` syntax
```C++
typedef struct _LDR_DLL_LOADED_NOTIFICATION_DATA {
ULONG Flags; //Reserved.
PCUNICODE_STRING FullDllName; //The full path name of the DLL module.
Expand All @@ -84,7 +85,7 @@ typedef struct _LDR_DLL_LOADED_NOTIFICATION_DATA {

The **LDR\_DLL\_UNLOADED\_NOTIFICATION\_DATA** structure has the following definition:

``` syntax
```C++
typedef struct _LDR_DLL_UNLOADED_NOTIFICATION_DATA {
ULONG Flags; //Reserved.
PCUNICODE_STRING FullDllName; //The full path name of the DLL module.
Expand Down