NFYSTARTDLL

3.1

#include <toolhelp.h>

typedef struct tagNFYSTARTDLL {  /* nfysd */
    DWORD   dwSize;
    HMODULE hModule;
    WORD    wCS;
    WORD    wIP;
} NFYSTARTDLL;

The NFYSTARTDLL structure contains information about the dynamic-link library (DLL) being loaded when the kernel sends a load-DLL notification.

Members

dwSize

Specifies the size of the NFYSTARTDLL structure, in bytes.

hModule

Identifies the library module being loaded.

wCS

Contains the value in the CS register at load time. This value is used with the value of the wIP member to determine the load address of the library.

wIP

Contains the value in the IP register at load time. This value is used with the wCS value to determine the load address of the library.

See Also

NotifyRegister