Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
d4db6821
Commit
d4db6821
authored
Oct 08, 2001
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 08, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move COLORREF from wingdi.h to windef.h.
Add a prototype for GdiFlush.
parent
d599c5a9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
windef.h
include/windef.h
+3
-1
wingdi.h
include/wingdi.h
+1
-2
No files found.
include/windef.h
View file @
d4db6821
...
...
@@ -51,6 +51,8 @@ typedef LONG LRESULT;
typedef
WORD
ATOM
;
typedef
WORD
CATCHBUF
[
9
];
typedef
WORD
*
LPCATCHBUF
;
typedef
DWORD
COLORREF
,
*
LPCOLORREF
;
/* Handle types that exist both in Win16 and Win32. */
...
...
@@ -191,7 +193,7 @@ typedef const RECT *LPCRECT;
typedef
struct
tagRECTL
{
LONG
left
;
LONG
top
;
LONG
top
;
LONG
right
;
LONG
bottom
;
}
RECTL
,
*
PRECTL
,
*
LPRECTL
;
...
...
include/wingdi.h
View file @
d4db6821
...
...
@@ -399,8 +399,6 @@ DECL_WINELIB_TYPE_AW(LOGCOLORSPACE)
/* Colors */
typedef
DWORD
COLORREF
,
*
LPCOLORREF
;
#define RGB(r,g,b) ((COLORREF)((r) | ((g) << 8) | ((b) << 16)))
#define PALETTERGB(r,g,b) (0x02000000 | RGB(r,g,b))
#define PALETTEINDEX(i) ((COLORREF)(0x01000000 | (WORD)(i)))
...
...
@@ -3106,6 +3104,7 @@ BOOL WINAPI FlattenPath(HDC);
BOOL
WINAPI
FloodFill
(
HDC
,
INT
,
INT
,
COLORREF
);
BOOL
WINAPI
FrameRgn
(
HDC
,
HRGN
,
HBRUSH
,
INT
,
INT
);
BOOL
WINAPI
GdiComment
(
HDC
,
UINT
,
const
BYTE
*
);
BOOL
WINAPI
GdiFlush
(
void
);
INT
WINAPI
GetArcDirection
(
HDC
);
BOOL
WINAPI
GetAspectRatioFilterEx
(
HDC
,
LPSIZE
);
LONG
WINAPI
GetBitmapBits
(
HBITMAP
,
LONG
,
LPVOID
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment