// tcpxcv.h
typedef struct _CONFIG_INFO_DATA_1 {
BYTE Reserved[128];
DWORD dwVersion;
} CONFIG_INFO_DATA_1, *PCONFIG_INFO_DATA_1;
View the official Windows Driver Kit DDI referenceNo description available.
The XcvData function uses a CONFIG_INFO_DATA_1 structure when it obtains configuration data for a particular port.
ReservedIs reserved for system use. This member should be set to a zero-length string.
dwVersionSpecifies the version of the PORT_DATA_1 structure (currently equal to 1) that will contain the configuration information.
When the XcvData function is called to obtain port configuration information, its pInputData parameter must be set with the address of a CONFIG_INFO_DATA_1 structure, and its pOutputData parameter must be set with the address of a PORT_DATA_1 structure, which will be filled in when the function returns. Set this function's pszDataName parameter to the string L"GetConfigInfo".
See TCPMON Xcv Interface for more information.