RASENTRYDLG
[New
- Windows NT]
The RASENTRYDLG
structure is used in the RasEntryDlg
typedef struct tagRASENTRYDLG {
IN DWORD dwSize;
IN HWND
hwndOwner;
IN DWORD dwFlags;
IN LONG xDlg;
IN LONG
yDlg;
OUT WCHAR
szEntry[ RAS_MaxEntryName + 1 ];
OUT DWORD
dwError;
IN DWORD reserved;
IN DWORD reserved2;
} RASENTRYDLG;
Members
dwSize
Specifies the
size of this structure, in bytes. Before calling RasEntryDlg
hwndOwner
Identifies
the window that owns the modal RasEntryDlg dialog box. This member can
be any valid window handle, or it can be NULL if the dialog box has no owner.
dwFlags
A set of bit
flags that indicate the options enabled for the dialog box. This parameter can
be a combination of the RASEDFLAG_PositionDlg flag and one of the other flags
listed following to indicate whether the RasEntryDlg
Value |
Meaning |
RASEDFLAG_PositionDlg
|
Causes RasEntryDlg |
RASEDFLAG_NewEntry |
Causes RasEntryDlg
to display a wizard for creating a new phone-book entry. |
RASEDFLAG_CloneEntry |
Causes RasEntryDlg |
RASEDFLAG_NoRename |
Causes RasEntryDlg
to display a property sheet for editing the properties of the phone-book
entry specified by the lpszEntry parameter of RasEntryDlg. The
user can change the properties of the entry but not its name. |
xDlg
Specifies the
horizontal screen coordinate of the upper-left corner of the dialog box. This
value is used only if the RASEDFLAG_PositionDlg flag is set.
yDlg
Specifies the
vertical screen coordinate of the upper-left corner of the dialog box. This
value is used only if the RASEDFLAG_PositionDlg flag is set.
szEntry
On exit, szEntry
is set to the name of the phone-book entry that was edited or created.
dwError
The RasEntryDlg
function sets this member to a system error code or RAS error code if an error
occurs. If no error occurs, the function sets dwError to zero. This
value is ignored on input.
reserved
Reserved;
must be zero.
reserved2
Reserved;
must be zero.
See Also