// 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 referenceNo description available.
The STOR_DRIVER_PROXY_ENDPOINT_INFORMATION structure contains information about a driver proxy endpoint.
IdUnique identifier for the endpoint function that EndpointFunction points to.
EndpointFunctionPointer to the driver's endpoint function. EndpointFunction must point to a function that has ParameterCount parameters.
ParameterCountNumber of parameters that the endpoint function takes.
StorPortRegisterDriverProxyEndpoints