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
ad2b0a0f
Commit
ad2b0a0f
authored
May 07, 2006
by
Louis. Lenders
Committed by
Alexandre Julliard
May 09, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Add stub for GetCharWidthI and GetFontUnicodeRanges.
parent
1ca6fc12
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
font.c
dlls/gdi/font.c
+18
-0
gdi32.spec
dlls/gdi/gdi32.spec
+2
-2
No files found.
dlls/gdi/font.c
View file @
ad2b0a0f
...
...
@@ -3068,3 +3068,21 @@ BOOL WINAPI EnableEUDC(BOOL fEnableEUDC)
FIXME
(
"(%d): stub
\n
"
,
fEnableEUDC
);
return
FALSE
;
}
/***********************************************************************
* GetCharWidthI (GDI32.@)
*/
BOOL
WINAPI
GetCharWidthI
(
HDC
hdc
,
UINT
giFirst
,
UINT
cgi
,
LPWORD
pgi
,
LPINT
lpBuffer
)
{
FIXME
(
"(%p, %d, %d, %p, %p): stub
\n
"
,
hdc
,
giFirst
,
cgi
,
pgi
,
lpBuffer
);
return
FALSE
;
}
/***********************************************************************
* GetFontUnicodeRanges (GDI32.@)
*/
DWORD
WINAPI
GetFontUnicodeRanges
(
HDC
hdc
,
LPGLYPHSET
lpgs
)
{
FIXME
(
"(%p, %p): stub
\n
"
,
hdc
,
lpgs
);
return
0
;
}
dlls/gdi/gdi32.spec
View file @
ad2b0a0f
...
...
@@ -244,7 +244,7 @@
@ stdcall GetCharWidthA(long long long long) GetCharWidth32A
@ stdcall GetCharWidthFloatA(long long long ptr)
@ stdcall GetCharWidthFloatW(long long long ptr)
# @ stub GetCharWidthI
@ stdcall GetCharWidthI(ptr long long ptr ptr)
# @ stub GetCharWidthInfo
@ stdcall GetCharWidthW(long long long long) GetCharWidth32W
@ stub GetCharWidthWOW
...
...
@@ -279,7 +279,7 @@
@ stdcall GetFontLanguageInfo(long)
@ stub GetFontResourceInfo
@ stub GetFontResourceInfoW
# @ stub GetFontUnicodeRanges
@ stdcall GetFontUnicodeRanges(ptr ptr)
@ stdcall GetGlyphIndicesA(long ptr long ptr long)
@ stdcall GetGlyphIndicesW(long ptr long ptr long)
@ stub GetGlyphOutline
...
...
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