migrate substitution keywords to SVN
[reactos.git] / reactos / include / win32k / font.h
1 /* $Id$
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS system libraries
5 * FILE: include/win32k/font.h
6 * PURPOSE: GDI32/Win32k font interface
7 * PROGRAMMER:
8 *
9 */
10
11 #ifndef WIN32K_FONT_H_INCLUDED
12 #define WIN32K_FONT_H_INCLUDED
13
14 #include <windows.h>
15
16 typedef struct tagFONTFAMILYINFO
17 {
18 ENUMLOGFONTEXW EnumLogFontEx;
19 NEWTEXTMETRICEXW NewTextMetricEx;
20 DWORD FontType;
21 } FONTFAMILYINFO, *PFONTFAMILYINFO;
22
23 int STDCALL NtGdiGetFontFamilyInfo(HDC Dc, LPLOGFONTW LogFont, PFONTFAMILYINFO Info, DWORD Size);
24 BOOL STDCALL NtGdiTranslateCharsetInfo(PDWORD Src, LPCHARSETINFO CSI, DWORD Flags);
25 DWORD STDCALL NtGdiGetFontData(HDC,DWORD,DWORD,LPVOID,DWORD);
26
27 #endif /* WIN32K_FONT_H_INCLUDED */