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
cdf191a2
Commit
cdf191a2
authored
Nov 21, 1999
by
Huw D M Davies
Committed by
Alexandre Julliard
Nov 21, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub for GetFontData16.
parent
399e41fc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
gdi.spec
if1632/gdi.spec
+1
-1
wingdi16.h
include/wine/wingdi16.h
+1
-0
font.c
objects/font.c
+10
-0
No files found.
if1632/gdi.spec
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) GetFontData16
312 stub ConvertOutLineFontFile
313 pascal16 GetRasterizerCaps(ptr word) GetRasterizerCaps16
314 stub EngineExtTextOut
...
...
include/wine/wingdi16.h
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
);
...
...
objects/font.c
View file @
cdf191a2
...
...
@@ -1555,6 +1555,16 @@ DWORD WINAPI GetFontData(HDC hdc, DWORD table, DWORD offset,
}
/*************************************************************************
* 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]
*
* NOTES:
...
...
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