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
466633c7
Commit
466633c7
authored
Nov 28, 2005
by
Rein Klazes
Committed by
Alexandre Julliard
Nov 28, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add stub implementation for SetMagicColors().
parent
69b54d4e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
gdi32.spec
dlls/gdi/gdi32.spec
+1
-1
palette.c
dlls/gdi/palette.c
+9
-0
No files found.
dlls/gdi/gdi32.spec
View file @
466633c7
...
...
@@ -443,7 +443,7 @@
@ stdcall SetICMProfileW(long wstr)
@ stdcall SetLayout(long long)
# @ stub SetLayoutWidth
@ st
ub SetMagicColors
@ st
dcall SetMagicColors(ptr long long)
@ stdcall SetMapMode(long long)
@ stdcall SetMapperFlags(long long)
@ stdcall SetMetaFileBitsEx(long ptr)
...
...
dlls/gdi/palette.c
View file @
466633c7
...
...
@@ -908,6 +908,15 @@ VOID WINAPI SetMagicColors16(HDC16 hDC, COLORREF color, UINT16 index)
}
/*********************************************************************
* SetMagicColors (GDI.@)
*/
BOOL
WINAPI
SetMagicColors
(
HDC
hdc
,
ULONG
u1
,
ULONG
u2
)
{
FIXME
(
"(%p 0x%08lx 0x%08lx): stub
\n
"
,
hdc
,
u1
,
u2
);
return
TRUE
;
}
/**********************************************************************
* GetICMProfileA [GDI32.@]
*
...
...
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