disable freetype for now

svn path=/trunk/; revision=1758
This commit is contained in:
Jason Filby 2001-03-31 15:56:57 +00:00
parent d8538e9795
commit f22ea77911

View file

@ -6,22 +6,23 @@
#include <win32k/dc.h>
#include <win32k/text.h>
#include <win32k/kapi.h>
#include <freetype/freetype.h>
// #include <freetype/freetype.h>
// #define NDEBUG
#include <win32k/debug1.h>
FT_Library library;
// FT_Library library;
BOOL InitFontSupport()
{
ULONG error;
/* ULONG error;
error = FT_Init_FreeType(&library);
if(error)
{
return FALSE;
} else return TRUE;
} else return TRUE; */
return TRUE;
}
int
@ -378,8 +379,9 @@ W32kTextOut(HDC hDC,
LPCWSTR String,
int Count)
{
UNIMPLEMENTED;
// Fixme: Call EngTextOut, which does the real work (calling DrvTextOut where appropriate)
/*
DC *dc = DC_HandleToPtr(hDC);
SURFOBJ *SurfObj = AccessUserObject(dc->Surface);
UNICODE_STRING FileName;
@ -545,7 +547,7 @@ W32kTextOut(HDC hDC,
}
DbgPrint("BREAK\n"); for (;;) ;
*/
/* RtlFreeAnsiString(AString);
RtlFreeUnicodeString(UString); */
}