RASDIALEXTENSIONS
The RASDIALEXTENSIONS
structure contains information about extended features of the RasDial
typedef
struct _RASDIALEXTENSIONS {
DWORD dwSize;
DWORD dwfOptions;
HWND hwndParent;
DWORD reserved;
} RASDIALEXTENSIONS;
Members
dwSize
Specifies the
size of this structure, in bytes. Set this member to sizeof(RASDIALEXTENSIONS).
This indicates the version of the structure.
dwfOptions
A set of bit
flags that specify RasDial extensions. The following bit flags are
defined; you must set all undefined bits to zero:
Value |
Description |
RDEOPT_UsePrefixSuffix |
If this bit
flag is one, RasDial If this bit
flag is zero, RasDial ignores the prefix and suffix that is in the RAS
phonebook. If no
phonebook 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 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 If this bit
flag is zero, RasDial uses the modem speaker setting that is in the
RAS phonebook, and ignores the setting specified by the
RDEOPT_SetModemSpeaker bit flag. If no
phonebook 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 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 phonebook setting or the default setting. |
RDEOPT_IgnoreSoftwareCompression |
If this bit
flag is one, RasDial If this bit
flag is zero, RasDial uses the software compression setting that is in
the RAS phonebook, and ignores the setting specified by the
RDEOPT_SetSoftwareCompression bit flag. If no
phonebook 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 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 phonebook 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.
hwndParent
Handle to a
parent window that a security DLL can use for dialog box creation and
centering.
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.
reserved
This member
is reserved for future use. It must be set to zero.
See Also