Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
361b9e87
Commit
361b9e87
authored
22 years ago
by
Steve Lustbader
Committed by
Alexandre Julliard
22 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Stub for SetDCBrushColor.
parent
1550044e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/gdi/gdi32.spec
+1
-0
1 addition, 0 deletions
dlls/gdi/gdi32.spec
include/wingdi.h
+1
-0
1 addition, 0 deletions
include/wingdi.h
objects/dc.c
+15
-0
15 additions, 0 deletions
objects/dc.c
with
17 additions
and
0 deletions
dlls/gdi/gdi32.spec
+
1
−
0
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
...
...
This diff is collapsed.
Click to expand it.
include/wingdi.h
+
1
−
0
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
,
...
...
This diff is collapsed.
Click to expand it.
objects/dc.c
+
15
−
0
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
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment