DELETE_PORT_DATA_1 - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-tcpxcv-_delete_port_data_1)

_DELETE_PORT_DATA_1 structure

Description

The XcvData function uses a DELETE_PORT_DATA_1 structure when it deletes a port.

Members

psztPortName

Specifies the name of the port to be deleted. The MAX_PORTNAME_LEN constant is defined in tcpxcv.h.

Reserved

Is reserved for system use.

dwVersion

Specifies the version of this structure, which is currently 1.

dwReserved

Is obsolete, and must be set to 0.

Remarks

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.

See also

XcvData