DDHAL_SETMODEDATA

The DDHAL_SETMODEDATA structure contains information necessary to set the display mode. This structure passes the information to the DirectDraw HAL SetMode callback function.

typedef struct _DDHAL_SETMODEDATA
{
LPDDRAWI_DIRECTDRAW_GBL    lpDD;
DWORD                      dwModeIndex;
HRESULT                    ddRVal;
LPDDHAL_SETMODE            SetMode;
BOOL                       inexcl;
BOOL                       useRefreshRate;
} DDHAL_SETMODEDATA;

Members

  • lpDD
    Pointer to the DDRAWI_DIRECTDRAW_GBL structure that represents the DirectDraw object.
  • dwModeIndex
    Pointer to the index into the mode table.
  • ddRVal
    Passes the DirectDraw return values.
  • SetMode
    This member is used by DirectDraw and should not be filled in by the driver.
  • inexcl
    Indicates whether this is in exclusive mode.
  • useRefreshRate
    Indicates whether to use the refresh rate in the mode information.

 Last updated on Tuesday, July 13, 2004

© 1992-2000 Microsoft Corporation. All rights reserved.