DELETE_PORT_DATA_1 structure (tcpxcv.h)

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

Syntax

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;

Members

psztPortName[MAX_PORTNAME_LEN]

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

Reserved[98]

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.

Requirements

Requirement Value
Header tcpxcv.h (include Tcpxcv.h)

See also

XcvData