gdi32: Export three implemented 16bit Engine*() functions.

This commit is contained in:
Francois Gouget 2008-12-13 12:06:48 +01:00 committed by Alexandre Julliard
parent cc6e4e955e
commit 52b4c7f26d
2 changed files with 6 additions and 6 deletions

View File

@ -231,9 +231,9 @@
301 pascal -ret16 EngineDeleteFont(ptr) EngineDeleteFont16 301 pascal -ret16 EngineDeleteFont(ptr) EngineDeleteFont16
302 pascal EngineRealizeFont(ptr ptr ptr) EngineRealizeFont16 302 pascal EngineRealizeFont(ptr ptr ptr) EngineRealizeFont16
303 pascal -ret16 EngineGetCharWidth(ptr word word ptr) EngineGetCharWidth16 303 pascal -ret16 EngineGetCharWidth(ptr word word ptr) EngineGetCharWidth16
304 stub ENGINESETFONTCONTEXT 304 pascal -ret16 EngineSetFontContext(ptr word) EngineSetFontContext16
305 stub ENGINEGETGLYPHBMP 305 pascal -ret16 EngineGetGlyphBMP(word ptr word word ptr long ptr) EngineGetGlyphBMP16
306 stub ENGINEMAKEFONTDIR 306 pascal EngineMakeFontDir(word ptr ptr) EngineMakeFontDir16
307 pascal -ret16 GetCharABCWidths(word word word ptr) GetCharABCWidths16 307 pascal -ret16 GetCharABCWidths(word word word ptr) GetCharABCWidths16
308 pascal -ret16 GetOutlineTextMetrics(word word ptr) GetOutlineTextMetrics16 308 pascal -ret16 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

View File

@ -1897,7 +1897,7 @@ WORD WINAPI EngineGetCharWidth16(LPFONTINFO16 lpFontInfo, BYTE firstChar, BYTE l
/*********************************************************************** /***********************************************************************
* EngineSetFontContext (GDI.304) * EngineSetFontContext (GDI.304)
*/ */
WORD WINAPI EngineSetFontContext(LPFONTINFO16 lpFontInfo, WORD data) WORD WINAPI EngineSetFontContext16(LPFONTINFO16 lpFontInfo, WORD data)
{ {
FIXME("stub?\n"); FIXME("stub?\n");
return 0; return 0;
@ -1906,7 +1906,7 @@ WORD WINAPI EngineSetFontContext(LPFONTINFO16 lpFontInfo, WORD data)
/*********************************************************************** /***********************************************************************
* EngineGetGlyphBMP (GDI.305) * EngineGetGlyphBMP (GDI.305)
*/ */
WORD WINAPI EngineGetGlyphBMP(WORD word, LPFONTINFO16 lpFontInfo, WORD w1, WORD w2, WORD WINAPI EngineGetGlyphBMP16(WORD word, LPFONTINFO16 lpFontInfo, WORD w1, WORD w2,
LPSTR string, DWORD dword, /*LPBITMAPMETRICS16*/ LPVOID metrics) LPSTR string, DWORD dword, /*LPBITMAPMETRICS16*/ LPVOID metrics)
{ {
FIXME("stub?\n"); FIXME("stub?\n");
@ -1917,7 +1917,7 @@ WORD WINAPI EngineGetGlyphBMP(WORD word, LPFONTINFO16 lpFontInfo, WORD w1, WORD
/*********************************************************************** /***********************************************************************
* EngineMakeFontDir (GDI.306) * EngineMakeFontDir (GDI.306)
*/ */
DWORD WINAPI EngineMakeFontDir(HDC16 hdc, LPFONTDIR16 fontdir, LPCSTR string) DWORD WINAPI EngineMakeFontDir16(HDC16 hdc, LPFONTDIR16 fontdir, LPCSTR string)
{ {
FIXME(" stub! (always fails)\n"); FIXME(" stub! (always fails)\n");
return ~0UL; /* error */ return ~0UL; /* error */