Platform SDK: RAS/Routing and RAS |
The RASDIALEXTENSIONS structure contains information about extended features of the RasDial function. You can enable one or more of these extensions by passing a pointer to a RASDIALEXTENSIONS structure when you call RasDial. If you do not pass a pointer to a RASDIALEXTENSIONS structure to RasDial, RasDial uses the default settings that are noted in the following descriptions.
typedef struct tagRASDIALEXTENSIONS { DWORD dwSize; DWORD dwfOptions; HWND hwndParent; ULONG_PTR reserved; #if (WINVER >= 0x500) ULONG_PTR reserved1; RASEAPINFO RasEapInfo; #endif } RASDIALEXTENSIONS;
Value | Description |
---|---|
RDEOPT_UsePrefixSuffix | If this bit flag is one, RasDial uses the prefix and suffix that is in the RAS phone book.
If this bit flag is zero, RasDial ignores the prefix and suffix that is in the RAS phone book. If no phone-book entry name is specified in the call to RasDial, the actual value of this bit flag is ignored, and it is assumed to be zero. |
RDEOPT_PausedStates | If this bit flag is one, RasDial accepts paused states. Examples of paused states are terminal mode, retry logon, change password, set callback number, and EAP authentication.
If this bit flag is zero, RasDial reports a fatal error if it enters a paused state. |
RDEOPT_IgnoreModemSpeaker | If this bit flag is one, RasDial ignores the modem speaker setting that is in the RAS phone book, and uses the setting specified by the RDEOPT_SetModemSpeaker bit flag.
If this bit flag is zero, RasDial uses the modem speaker setting that is in the RAS phone book, and ignores the setting specified by the RDEOPT_SetModemSpeaker bit flag. If no phone-book entry name is specified in the call to RasDial, the choice is between using a default setting or the setting specified by the RDEOPT_SetModemSpeaker bit flag. The default setting is used if RDEOPT_IgnoreModemSpeaker is zero. The setting specified by RDEOPT_SetModemSpeaker is used if RDEOPT_IgnoreModemSpeaker is one. |
RDEOPT_SetModemSpeaker | If this bit flag is one, and RDEOPT_IgnoreModemSpeaker is one, RasDial sets the modem speaker on.
If this bit flag is zero, and RDEOPT_IgnoreModemSpeaker is one, RasDial sets the modem speaker off. If RDEOPT_IgnoreModemSpeaker is zero, RasDial ignores the value of RDEOPT_SetModemSpeaker, and sets the modem speaker based on the RAS phone-book setting or the default setting. |
RDEOPT_IgnoreSoftwareCompression | If this bit flag is one, RasDial ignores the software compression setting that is in the RAS phone book, and uses the setting specified by the RDEOPT_SetSoftwareCompression bit flag.
If this bit flag is zero, RasDial uses the software compression setting that is in the RAS phone book, and ignores the setting specified by the RDEOPT_SetSoftwareCompression bit flag. If no phone-book entry name is specified in the call to RasDial, the choice is between using a default setting or the setting specified by the RDEOPT_SetSoftwareCompression bit flag. The default setting is used if RDEOPT_IgnoreSoftwareCompression is zero. The setting specified by RDEOPT_SetSoftwareCompression is used if RDEOPT_IgnoreSoftwareCompression is one. |
RDEOPT_SetSoftwareCompression | If this bit flag is one, and RDEOPT_IgnoreSoftwareCompression is one, RasDial uses software compression.
If this bit flag is zero, and RDEOPT_IgnoreSoftwareCompression is one, RasDial does not use software compression. If RDEOPT_IgnoreSoftwareCompression is zero, RasDial ignores the value of RDEOPT_SetSoftwareCompression, and sets the software compression state based on the RAS phone-book setting or the default setting. |
RDEOPT_PauseOnScript | Used internally by the RasDialDlg function so that a Windows-95-style logon script is executed in a terminal window visible to the user. Applications should not set this flag. |
The default value for each of these bit flags is zero.
Note that this is not the window that receives RasDial progress notifications.
This member is optional; it is not required when no security DLL is defined.
The default value for this member is NULL.
Windows NT/2000: Requires Windows NT 3.1 or later.
Windows 95/98: Unsupported.
Header: Declared in Ras.h.
Remote Access Service (RAS) Overview, Remote Access Service Structures, RasDial, RasInvokeEapUI