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
361b9e87
Commit
361b9e87
authored
Nov 21, 2002
by
Steve Lustbader
Committed by
Alexandre Julliard
Nov 21, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub for SetDCBrushColor.
parent
1550044e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
0 deletions
+17
-0
gdi32.spec
dlls/gdi/gdi32.spec
+1
-0
wingdi.h
include/wingdi.h
+1
-0
dc.c
objects/dc.c
+15
-0
No files found.
dlls/gdi/gdi32.spec
View file @
361b9e87
...
...
@@ -347,6 +347,7 @@
@ stdcall SetBrushOrgEx(long long long ptr) SetBrushOrgEx
@ stdcall SetColorAdjustment(long ptr) SetColorAdjustment
@ stdcall SetColorSpace(long long) SetColorSpace
@ stdcall SetDCBrushColor(long long) SetDCBrushColor
@ stdcall SetDIBColorTable(long long long ptr) SetDIBColorTable
@ stdcall SetDIBits(long long long long ptr ptr long) SetDIBits
@ stdcall SetDIBitsToDevice(long long long long long long long long long ptr ptr long) SetDIBitsToDevice
...
...
include/wingdi.h
View file @
361b9e87
...
...
@@ -3401,6 +3401,7 @@ BOOL WINAPI SetBrushOrgEx(HDC,INT,INT,LPPOINT);
BOOL
WINAPI
SetColorAdjustment
(
HDC
,
const
COLORADJUSTMENT
*
);
HCOLORSPACE
WINAPI
SetColorSpace
(
HDC
,
HCOLORSPACE
);
BOOL
WINAPI
SetDeviceGammaRamp
(
HDC
,
LPVOID
);
COLORREF
WINAPI
SetDCBrushColor
(
HDC
,
COLORREF
);
UINT
WINAPI
SetDIBColorTable
(
HDC
,
UINT
,
UINT
,
RGBQUAD
*
);
INT
WINAPI
SetDIBits
(
HDC
,
HBITMAP
,
UINT
,
UINT
,
LPCVOID
,
const
BITMAPINFO
*
,
UINT
);
INT
WINAPI
SetDIBitsToDevice
(
HDC
,
INT
,
INT
,
DWORD
,
DWORD
,
INT
,
...
...
objects/dc.c
View file @
361b9e87
...
...
@@ -1360,3 +1360,18 @@ DWORD WINAPI SetLayout(HDC hdc, DWORD layout)
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
/***********************************************************************
* SetDCBrushColor (GDI32.@)
*
* Sets the current device context (DC) brush color to the specified
* color value. If the device cannot represent the specified color
* value, the color is set to the nearest physical color.
*
*/
COLORREF
WINAPI
SetDCBrushColor
(
HDC
hdc
,
COLORREF
crColor
)
{
FIXME
(
"(%08x, %08lx): stub
\n
"
,
hdc
,
crColor
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
CLR_INVALID
;
}
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