// tcpxcv.h
typedef struct _DELETE_PORT_DATA_1 {
WCHAR psztPortName[MAX_PORTNAME_LEN];
BYTE Reserved[98];
DWORD dwVersion;
DWORD dwReserved;
} DELETE_PORT_DATA_1, *PDELETE_PORT_DATA_1;
View the official Windows Driver Kit DDI referenceNo description available.
The XcvData function uses a DELETE_PORT_DATA_1 structure when it deletes a port.
psztPortNameSpecifies the name of the port to be deleted. The MAX_PORTNAME_LEN constant is defined in tcpxcv.h.
ReservedIs reserved for system use.
dwVersionSpecifies the version of this structure, which is currently 1.
dwReservedIs obsolete, and must be set to 0.
When the XcvData function is called to delete a port, its pInputData parameter must be set with the address of a DELETE_PORT_DATA_1 structure. Set this function's pszDataName parameter to the string L"DeletePort".
See TCPMON Xcv Interface for more information.