CONFIG_INFO_DATA_1 structure (tcpxcv.h)

The XcvData function uses a CONFIG_INFO_DATA_1 structure when it obtains configuration data for a particular port.

Syntax

typedef struct _CONFIG_INFO_DATA_1 {
  BYTE  Reserved[128];
  DWORD dwVersion;
} CONFIG_INFO_DATA_1, *PCONFIG_INFO_DATA_1;

Members

Reserved[128]

Is reserved for system use. This member should be set to a zero-length string.

dwVersion

Specifies the version of the PORT_DATA_1 structure (currently equal to 1) that will contain the configuration information.

Remarks

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.

Requirements

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

See also

PORT_DATA_1

XcvData