Stub for GetFontData16.
This commit is contained in:
parent
399e41fc2e
commit
cdf191a205
|
@ -221,7 +221,7 @@ file gdi.exe
|
||||||
308 pascal16 GetOutlineTextMetrics(word word ptr) GetOutlineTextMetrics16
|
308 pascal16 GetOutlineTextMetrics(word word ptr) GetOutlineTextMetrics16
|
||||||
309 pascal GetGlyphOutline(word word word ptr long ptr ptr) GetGlyphOutline16
|
309 pascal GetGlyphOutline(word word word ptr long ptr ptr) GetGlyphOutline16
|
||||||
310 pascal16 CreateScalableFontResource(word str str str) CreateScalableFontResource16
|
310 pascal16 CreateScalableFontResource(word str str str) CreateScalableFontResource16
|
||||||
311 stub GetFontData
|
311 pascal GetFontData(word long long ptr long) GetFontData16
|
||||||
312 stub ConvertOutLineFontFile
|
312 stub ConvertOutLineFontFile
|
||||||
313 pascal16 GetRasterizerCaps(ptr word) GetRasterizerCaps16
|
313 pascal16 GetRasterizerCaps(ptr word) GetRasterizerCaps16
|
||||||
314 stub EngineExtTextOut
|
314 stub EngineExtTextOut
|
||||||
|
|
|
@ -375,6 +375,7 @@ INT16 WINAPI GetDeviceCaps16(HDC16,INT16);
|
||||||
UINT16 WINAPI GetDIBColorTable16(HDC16,UINT16,UINT16,RGBQUAD*);
|
UINT16 WINAPI GetDIBColorTable16(HDC16,UINT16,UINT16,RGBQUAD*);
|
||||||
INT16 WINAPI GetDIBits16(HDC16,HBITMAP16,UINT16,UINT16,LPVOID,LPBITMAPINFO,UINT16);
|
INT16 WINAPI GetDIBits16(HDC16,HBITMAP16,UINT16,UINT16,LPVOID,LPBITMAPINFO,UINT16);
|
||||||
INT16 WINAPI GetEnvironment16(LPCSTR,LPDEVMODEA,UINT16);
|
INT16 WINAPI GetEnvironment16(LPCSTR,LPDEVMODEA,UINT16);
|
||||||
|
DWORD WINAPI GetFontData16(HDC16,DWORD,DWORD,LPVOID,DWORD);
|
||||||
DWORD WINAPI GetFontLanguageInfo16(HDC16);
|
DWORD WINAPI GetFontLanguageInfo16(HDC16);
|
||||||
DWORD WINAPI GetGlyphOutline16(HDC16,UINT16,UINT16,LPGLYPHMETRICS16,DWORD,LPVOID,const MAT2*);
|
DWORD WINAPI GetGlyphOutline16(HDC16,UINT16,UINT16,LPGLYPHMETRICS16,DWORD,LPVOID,const MAT2*);
|
||||||
INT16 WINAPI GetKerningPairs16(HDC16,INT16,LPKERNINGPAIR16);
|
INT16 WINAPI GetKerningPairs16(HDC16,INT16,LPKERNINGPAIR16);
|
||||||
|
|
|
@ -1554,6 +1554,16 @@ DWORD WINAPI GetFontData(HDC hdc, DWORD table, DWORD offset,
|
||||||
return GDI_ERROR;
|
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]
|
* GetCharacterPlacementA [GDI32.160]
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue