// wsk.h
typedef struct _WSK_REGISTRATION {
ULONGLONG ReservedRegistrationState;
PVOID ReservedRegistrationContext;
KSPIN_LOCK ReservedRegistrationLock;
} WSK_REGISTRATION, *PWSK_REGISTRATION;
View the official Windows Driver Kit DDI referenceNo description available.
The WSK_REGISTRATION structure is used by the WSK subsystem to register or unregister a WSK application as a WSK client.
ReservedRegistrationStateReserved for system use. Do not use.
ReservedRegistrationContextReserved for system use. Do not use.
ReservedRegistrationLockReserved for system use. Do not use.
This structure is provided by a client application to register or unregister a WSK client instance. Do not update any of the members of this structure.
For more information about attaching a WSK application to the WSK subsystem, see Registering a Winsock Kernel Application.