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
8677fbf3
Commit
8677fbf3
authored
Feb 20, 2004
by
Rein Klazes
Committed by
Alexandre Julliard
Feb 20, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add stub implementation for SetICMProfileA().
parent
d240ae8d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
gdi32.spec
dlls/gdi/gdi32.spec
+1
-1
palette.c
objects/palette.c
+10
-0
No files found.
dlls/gdi/gdi32.spec
View file @
8677fbf3
...
...
@@ -362,7 +362,7 @@
@ stub SetFontEnumeration
@ stdcall SetGraphicsMode(long long)
@ stdcall SetICMMode(long long)
@ st
ub SetICMProfileA
@ st
dcall SetICMProfileA (long ptr)
@ stub SetICMProfileW
@ stdcall SetLayout(long long)
@ stub SetMagicColors
...
...
objects/palette.c
View file @
8677fbf3
...
...
@@ -924,3 +924,13 @@ BOOL WINAPI GetICMProfileA(HDC hDC, LPDWORD lpcbName, LPSTR lpszFilename)
strcpy
(
lpszFilename
,
WINEICM
);
return
TRUE
;
}
/**********************************************************************
* SetICMProfileA [GDI32.@]
*
*/
BOOL
WINAPI
SetICMProfileA
(
HDC
hDC
,
LPSTR
lpszFilename
)
{
FIXME
(
"hDC %p filename '%s': stub!
\n
"
,
hDC
,
debugstr_a
(
lpszFilename
));
return
TRUE
;
/* success */
}
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