STOR_DRIVER_PROXY_ENDPOINT_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// storport.h

typedef struct _STOR_DRIVER_PROXY_ENDPOINT_INFORMATION {
  STOR_DRIVER_PROXY_ENDPOINT_FUNCTION_ID Id;
  PVOID                                  EndpointFunction;
  ULONG                                  ParameterCount;
} STOR_DRIVER_PROXY_ENDPOINT_INFORMATION, *PSTOR_DRIVER_PROXY_ENDPOINT_INFORMATION;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-storport-stor_driver_proxy_endpoint_information)

Description

The STOR_DRIVER_PROXY_ENDPOINT_INFORMATION structure contains information about a driver proxy endpoint.

Members

Id

Unique identifier for the endpoint function that EndpointFunction points to.

EndpointFunction

Pointer to the driver's endpoint function. EndpointFunction must point to a function that has ParameterCount parameters.

ParameterCount

Number of parameters that the endpoint function takes.

Remarks

See also

StorPortRegisterDriverProxyEndpoints