|
RAS_PARAMS_VALUE
[New - Windows NT]
The RAS_PARAMS_VALUE union is used in the RAS_PARAMETERS structure to store the data associated with a media-specific parameter. The P_Type member of the RAS_PARAMETERS structure uses a value from the RAS_PARAMS_FORMAT enumeration to indicate the type of value currently stored in RAS_PARAMS_VALUE.
union RAS_PARAMS_VALUE {
DWORD Number;
struct {
DWORD Length ;
PCHAR Data ;
} String;
};
Members
Number
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.
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 structure is ParamString, the String member contains the value of the media-specific parameter.
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
RAS_PARAMETERS, RAS_PARAMS_FORMAT
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|