RAS_PARAMS_VALUE
[New
- Windows NT]
The RAS_PARAMS_VALUE
union is used in the RAS_PARAMETERS
union RAS_PARAMS_VALUE {
DWORD Number;
struct {
DWORD Length ;
PCHAR Data ;
} String;
};
Members
Number
If the P_Type
member of the RAS_PARAMETERS
If the P_Type
member of the RAS_PARAMETERS structure is ParamNumber, the Number
member contains the value of the media-specific parameter. For example, the
MAXCONNECTBPS parameter is of type ParamNumber, and the value might be 19200.
String
If the P_Type
member of the RAS_PARAMETERS
Length
Specifies the
length, in characters, of the string pointed to by the Data member.
Data
Pointer to a
buffer that contains the string value of a media-specific parameter.
See Also