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
b3a193a5
Commit
b3a193a5
authored
Jan 26, 2010
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jan 26, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Add GdiInitializeLanguagePack() stub.
parent
b109c5c6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
gdi32.spec
dlls/gdi32/gdi32.spec
+1
-1
gdiobj.c
dlls/gdi32/gdiobj.c
+10
-2
No files found.
dlls/gdi32/gdi32.spec
View file @
b3a193a5
...
...
@@ -193,7 +193,7 @@
@ stdcall GdiGetSpoolMessage(ptr long ptr long)
@ stdcall GdiGradientFill(long ptr long ptr long long)
@ stdcall GdiInitSpool()
# @ stub GdiInitializeLanguagePack
@ stdcall GdiInitializeLanguagePack(long)
@ stdcall GdiIsMetaFileDC(long)
@ stdcall GdiIsMetaPrintDC(long)
@ stdcall GdiIsPlayMetafileDC(long)
...
...
dlls/gdi32/gdiobj.c
View file @
b3a193a5
...
...
@@ -1164,6 +1164,14 @@ void WINAPI SetObjectOwner( HGDIOBJ handle, HANDLE owner )
/* Nothing to do */
}
/***********************************************************************
* GdiInitializeLanguagePack (GDI32.@)
*/
DWORD
WINAPI
GdiInitializeLanguagePack
(
DWORD
arg
)
{
FIXME
(
"stub
\n
"
);
return
0
;
}
/***********************************************************************
* GdiFlush (GDI32.@)
...
...
@@ -1199,7 +1207,7 @@ DWORD WINAPI GdiSetBatchLimit( DWORD limit )
*/
BOOL
WINAPI
GetColorAdjustment
(
HDC
hdc
,
LPCOLORADJUSTMENT
lpca
)
{
FIXME
(
"
GetColorAdjustment,
stub
\n
"
);
FIXME
(
"stub
\n
"
);
return
0
;
}
...
...
@@ -1228,6 +1236,6 @@ BOOL WINAPI GdiComment(HDC hdc, UINT cbSize, const BYTE *lpData)
*/
BOOL
WINAPI
SetColorAdjustment
(
HDC
hdc
,
const
COLORADJUSTMENT
*
lpca
)
{
FIXME
(
"
SetColorAdjustment,
stub
\n
"
);
FIXME
(
"stub
\n
"
);
return
0
;
}
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