RASADPARAMS structure

The RASADPARAMS structure describes the parameters that AutoDial passes to a RASADFunc AutoDial handler.

Syntax

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 the AutoDial user interface. The following flag is defined.

    Flag Meaning
    RASADFLG_PositionDlg

    If this flag is set, position the window according to the coordinates specified by the xDlg and yDlg members.

    If this flag is not set, center the window on the window specified by the hwndOwner member. If hwndOwner is NULL, center the window on the screen.

     

  • xDlg
    Specifies the horizontal screen coordinate of the 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 the window's upper-left corner. Ignore this member if the RASADFLG_PositionDlg bit is not set in the dwFlags member.

Requirements

Minimum supported client

Windows 2000 Professional [desktop apps only]

Minimum supported server

Windows 2000 Server [desktop apps only]

Header

Ras.h

See also

Remote Access Service (RAS) Overview

Remote Access Service Structures

RASADFunc