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
63e241ab
Commit
63e241ab
authored
Jan 03, 2005
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 03, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub implementations for GetLogColorSpace{A,W}.
parent
f4a5ba1f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
gdi32.spec
dlls/gdi/gdi32.spec
+2
-2
palette.c
dlls/gdi/palette.c
+20
-0
No files found.
dlls/gdi/gdi32.spec
View file @
63e241ab
...
...
@@ -232,8 +232,8 @@
@ stdcall GetKerningPairsA(long long ptr)
@ stdcall GetKerningPairsW(long long ptr)
@ stdcall GetLayout(long)
@ st
ub GetLogColorSpaceA
@ st
ub GetLogColorSpaceW
@ st
dcall GetLogColorSpaceA(long ptr long)
@ st
dcall GetLogColorSpaceW(long ptr long)
@ stdcall GetMapMode(long)
@ stdcall GetMetaFileA(str)
@ stdcall GetMetaFileBitsEx(long long ptr)
...
...
dlls/gdi/palette.c
View file @
63e241ab
...
...
@@ -985,6 +985,26 @@ BOOL WINAPI GetICMProfileW(HDC hDC, LPDWORD lpcbName, LPWSTR lpszFilename)
}
/**********************************************************************
* GetLogColorSpaceA [GDI32.@]
*
*/
BOOL
WINAPI
GetLogColorSpaceA
(
HCOLORSPACE
hColorSpace
,
LPLOGCOLORSPACEA
lpBuffer
,
DWORD
nSize
)
{
FIXME
(
"%p %p 0x%08lx: stub!
\n
"
,
hColorSpace
,
lpBuffer
,
nSize
);
return
FALSE
;
}
/**********************************************************************
* GetLogColorSpaceW [GDI32.@]
*
*/
BOOL
WINAPI
GetLogColorSpaceW
(
HCOLORSPACE
hColorSpace
,
LPLOGCOLORSPACEW
lpBuffer
,
DWORD
nSize
)
{
FIXME
(
"%p %p 0x%08lx: stub!
\n
"
,
hColorSpace
,
lpBuffer
,
nSize
);
return
FALSE
;
}
/**********************************************************************
* SetICMProfileA [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