Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Felix Münchhalfen
wine
Commits
cdf191a2
Commit
cdf191a2
authored
25 years ago
by
Huw D. M. Davies
Committed by
Alexandre Julliard
25 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Stub for GetFontData16.
parent
399e41fc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
if1632/gdi.spec
+1
-1
1 addition, 1 deletion
if1632/gdi.spec
include/wine/wingdi16.h
+1
-0
1 addition, 0 deletions
include/wine/wingdi16.h
objects/font.c
+10
-0
10 additions, 0 deletions
objects/font.c
with
12 additions
and
1 deletion
if1632/gdi.spec
+
1
−
1
View file @
cdf191a2
...
...
@@ -221,7 +221,7 @@ file gdi.exe
308 pascal16 GetOutlineTextMetrics(word word ptr) GetOutlineTextMetrics16
309 pascal GetGlyphOutline(word word word ptr long ptr ptr) GetGlyphOutline16
310 pascal16 CreateScalableFontResource(word str str str) CreateScalableFontResource16
311
stub
GetFontData
311
pascal GetFontData(word long long ptr long)
GetFontData
16
312 stub ConvertOutLineFontFile
313 pascal16 GetRasterizerCaps(ptr word) GetRasterizerCaps16
314 stub EngineExtTextOut
...
...
This diff is collapsed.
Click to expand it.
include/wine/wingdi16.h
+
1
−
0
View file @
cdf191a2
...
...
@@ -375,6 +375,7 @@ INT16 WINAPI GetDeviceCaps16(HDC16,INT16);
UINT16
WINAPI
GetDIBColorTable16
(
HDC16
,
UINT16
,
UINT16
,
RGBQUAD
*
);
INT16
WINAPI
GetDIBits16
(
HDC16
,
HBITMAP16
,
UINT16
,
UINT16
,
LPVOID
,
LPBITMAPINFO
,
UINT16
);
INT16
WINAPI
GetEnvironment16
(
LPCSTR
,
LPDEVMODEA
,
UINT16
);
DWORD
WINAPI
GetFontData16
(
HDC16
,
DWORD
,
DWORD
,
LPVOID
,
DWORD
);
DWORD
WINAPI
GetFontLanguageInfo16
(
HDC16
);
DWORD
WINAPI
GetGlyphOutline16
(
HDC16
,
UINT16
,
UINT16
,
LPGLYPHMETRICS16
,
DWORD
,
LPVOID
,
const
MAT2
*
);
INT16
WINAPI
GetKerningPairs16
(
HDC16
,
INT16
,
LPKERNINGPAIR16
);
...
...
This diff is collapsed.
Click to expand it.
objects/font.c
+
10
−
0
View file @
cdf191a2
...
...
@@ -1554,6 +1554,16 @@ DWORD WINAPI GetFontData(HDC hdc, DWORD table, DWORD offset,
return
GDI_ERROR
;
}
/*************************************************************************
* GetFontData16 [GDI.311]
*
*/
DWORD
WINAPI
GetFontData16
(
HDC16
hdc
,
DWORD
dwTable
,
DWORD
dwOffset
,
LPVOID
lpvBuffer
,
DWORD
cbData
)
{
return
GetFontData
(
hdc
,
dwTable
,
dwOffset
,
lpvBuffer
,
cbData
);
}
/*************************************************************************
* GetCharacterPlacementA [GDI32.160]
*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment