2009-14-09 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
* include/wingdi.h (_devicemodeW, _devicemodeA): Correct definition. Thanks to Bruno Martinez for the report.
This commit is contained in:
parent
5e80d7d546
commit
88dc5cc365
|
@ -1,16 +1,22 @@
|
|||
2009-14-09 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
|
||||
|
||||
* include/wingdi.h (_devicemodeW, _devicemodeA): Correct definition.
|
||||
|
||||
Thanks to Bruno Martinez for the report.
|
||||
|
||||
2009-14-09 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
|
||||
|
||||
* include/shlobj.h (IDO_SHGIOI_SHARE, IDO_SHGIOI_LINK, IDO_SHGIOI_SLOWFILE,
|
||||
IDO_SHGIOI_DEFAULT, SHGetIconOverlayIndexW, SHGetIconOverlayIndexA,
|
||||
SHGetIconOverlayIndex): Define.
|
||||
|
||||
Thanks to Tim Kosse for report.
|
||||
Thanks to Tim Kosse for the report.
|
||||
|
||||
2009-13-09 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
|
||||
|
||||
* include/wincon.h (AttachConsole): Correct guard.
|
||||
|
||||
Thanks to Alexander Shaduri for report.
|
||||
Thanks to Alexander Shaduri for the report.
|
||||
|
||||
2009-13-09 Robert Moerland <rjmoerland@users.sourceforge.net>
|
||||
|
||||
|
|
|
@ -1502,9 +1502,11 @@ typedef struct _devicemodeA {
|
|||
short dmDefaultSource;
|
||||
short dmPrintQuality;
|
||||
} DUMMYSTRUCTNAME;
|
||||
POINTL dmPosition;
|
||||
DWORD dmDisplayOrientation;
|
||||
DWORD dmDisplayFixedOutput;
|
||||
_ANONYMOUS_STRUCT struct {
|
||||
POINTL dmPosition;
|
||||
DWORD dmDisplayOrientation;
|
||||
DWORD dmDisplayFixedOutput;
|
||||
} DUMMYSTRUCTNAME2;
|
||||
} DUMMYUNIONNAME;
|
||||
|
||||
short dmColor;
|
||||
|
@ -1553,9 +1555,11 @@ typedef struct _devicemodeW {
|
|||
short dmDefaultSource;
|
||||
short dmPrintQuality;
|
||||
} DUMMYSTRUCTNAME;
|
||||
POINTL dmPosition;
|
||||
DWORD dmDisplayOrientation;
|
||||
DWORD dmDisplayFixedOutput;
|
||||
_ANONYMOUS_STRUCT struct {
|
||||
POINTL dmPosition;
|
||||
DWORD dmDisplayOrientation;
|
||||
DWORD dmDisplayFixedOutput;
|
||||
} DUMMYSTRUCTNAME2;
|
||||
} DUMMYUNIONNAME;
|
||||
|
||||
short dmColor;
|
||||
|
|
Loading…
Reference in New Issue