Release 970824
[wine/multimedia.git] / graphics / fontengine.c
blob4dd6e1fc7e25b39a1e64ef411a153af898d3bdc8
1 /*
2 * True Type font engine support
4 * Copyright 1996 John Harvey
5 */
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include "windows.h"
10 /* GDI 300 */
11 WORD WINAPI EngineEnumerateFont(LPSTR fontname, FARPROC16 proc, DWORD data )
13 printf("In engineEnumerateFont for %s\n",(fontname)?fontname:"NULL");
14 return 0;
16 #ifdef NOTDEF
17 /* GDI 301 */
18 WORD WINAPI EngineDeleteFont(LPFONTINFO16 lpFontInfo)
20 return 0
22 #endif
23 /* GDI 302 */
24 WORD WINAPI EngineRealizeFont(LPLOGFONT16 lplogFont, LPTEXTXFORM16 lptextxform, LPFONTINFO16 lpfontInfo)
26 printf("In EngineRealizeFont\n");
28 return 0;
30 #ifdef NOTDEF
31 /* GDI 303 */
32 WORD WINAPI EngineGetCharWidth(LPFONTINFO16 lpFontInfo, BYTE, BYTE, LPINT16)
34 return 0;
37 /* GDI 304 */
38 WORD WINAPI EngineSetFontContext(LPFONTINFO lpFontInfo, WORD data)
41 /* GDI 305 */
42 WORD WINAPI EngineGetGlyphBMP(WORD word, LPFONTINFO lpFontInfo, WORD, WORD, LPSTR string, DWORD dword, LPBITMAPMETRICS16 metrics)
44 return 0;
47 /* GDI 306 */
48 DWORD WINAPI EngineMakeFontDir(HDC16 hdc, LPFONTDIR fontdir, LPCSTR string)
50 return 0;
54 /* GDI 314 */
56 WORD WINAPI EngineExtTextOut()
60 #endif