PROJECTION_INFO structure (mprapi.h)

The PROJECTION_INFO structure is used in the RAS_CONNECTION_EX structure as a placeholder for the PPP_PROJECTION_INFO and IKEV2_PROJECTION_INFO structures.

Syntax

typedef struct _PROJECTION_INFO {
  UCHAR projectionInfoType;
  union {
    PPP_PROJECTION_INFO   PppProjectionInfo;
    IKEV2_PROJECTION_INFO Ikev2ProjectionInfo;
  };
} PROJECTION_INFO, *PPROJECTION_INFO;

Members

projectionInfoType

A value that specifies if the projection is for a Point-to-Point (PPP) or an Internet Key Exchange version 2 (IKEv2) based tunnel. The following values are supported:

Value Meaning
MPRAPI_PPP_PROJECTION_INFO_TYPE
Data is a PPP_PROJECTION_INFO structure.
MPRAPI_IKEV2_PROJECTION_INFO_TYPE
Data is a IKEV2_PROJECTION_INFO structure.

PppProjectionInfo

A PPP_PROJECTION_INFO structure that is used for a PPP based tunnel.

Ikev2ProjectionInfo

A IKEV2_PROJECTION_INFO structure that is used for an IKEv2 based tunnel.

Requirements

Requirement Value
Minimum supported client None supported
Minimum supported server Windows Server 2008 R2 [desktop apps only]
Header mprapi.h

See also

RAS_CONNECTION_EX

Router Management Reference

Router Management Structures