|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| -
| Header File
| ras.h
| Unicode
| No
| Platform Notes
| None
|
|
|
RASADPARAMS
[New - Windows NT]
The RASADPARAMS structure describes the parameters that AutoDial passes to a RASADFunc AutoDial handler.
typedef struct tagRASADPARAMS {
DWORD dwSize;
HWND hwndOwner;
DWORD dwFlags;
LONG xDlg;
LONG yDlg;
} RASADPARAMS;
Members
dwSize
Specifies the size, in bytes, of the RASADPARAMS structure. The system sets dwSize to sizeof(RASADPARAMS) to identify the version of the structure.
hwndOwner
Specifies the parent window for the AutoDial user interface. This member can
be NULL.
dwFlags
Specifies a flag that indicates how to position the window of your AutoDial
user interface. The following flag is defined.
Flag
| Description
| RASADFLG_PositionDlg
| If this flag is set, position your window according to the coordinates
specified by the xDlg and yDlg members.
If this flag is not set, center your window on the window specified by the hwndOwner member. If hwndOwner is NULL, center your window on the screen.
|
xDlg
Specifies the horizontal screen coordinate of your window's upper-left corner.
Ignore this member if the RASADFLG_PositionDlg bit is not set in the dwFlags member.
yDlg
Specifies the vertical screen coordinate of your window's upper-left corner.
Ignore this member if the RASADFLG_PositionDlg bit is not set in the dwFlags member.
See Also
RASADFunc
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
|