mirror of
https://github.com/reactos/reactos.git
synced 2025-05-14 23:03:53 +00:00
Fix definition of DEVMODE
svn path=/trunk/; revision=40433
This commit is contained in:
parent
418ee7239b
commit
fdaa172e95
1 changed files with 12 additions and 8 deletions
|
@ -1438,9 +1438,11 @@ typedef struct _devicemodeA {
|
|||
#else
|
||||
} DUMMYSTRUCTNAME;
|
||||
#endif
|
||||
POINTL dmPosition;
|
||||
DWORD dmDisplayOrientation;
|
||||
DWORD dmDisplayFixedOutput;
|
||||
struct {
|
||||
POINTL dmPosition;
|
||||
DWORD dmDisplayOrientation;
|
||||
DWORD dmDisplayFixedOutput;
|
||||
} DUMMYSTRUCTNAME2;
|
||||
#ifdef __WINESRC__
|
||||
} DUMMYUNIONNAME1;
|
||||
#else
|
||||
|
@ -1497,13 +1499,15 @@ typedef struct _devicemodeW {
|
|||
#else
|
||||
} DUMMYSTRUCTNAME;
|
||||
#endif
|
||||
POINTL dmPosition;
|
||||
DWORD dmDisplayOrientation;
|
||||
DWORD dmDisplayFixedOutput;
|
||||
struct {
|
||||
POINTL dmPosition;
|
||||
DWORD dmDisplayOrientation;
|
||||
DWORD dmDisplayFixedOutput;
|
||||
} DUMMYSTRUCTNAME2;
|
||||
#ifdef __WINESRC__
|
||||
} DUMMYUNIONNAME1;
|
||||
#else
|
||||
} DUMMYUNIONNAME;
|
||||
} DUMMYUNIONNAME2;
|
||||
#endif
|
||||
|
||||
short dmColor;
|
||||
|
@ -1533,7 +1537,7 @@ typedef struct _devicemodeW {
|
|||
DWORD dmPanningHeight;
|
||||
#endif
|
||||
#endif /* WINVER >= 0x0400 */
|
||||
} DEVMODEW,*LPDEVMODEW,*PDEVMODEW;
|
||||
} DEVMODEW,*LPDEVMODEW,*PDEVMODEW,*NPDEVMODEW;
|
||||
typedef struct tagDIBSECTION {
|
||||
BITMAP dsBm;
|
||||
BITMAPINFOHEADER dsBmih;
|
||||
|
|
Loading…
Reference in a new issue