dlls/gdi32/freetype.c: Use FIXME_ONCE for quieter reports.

Max TenEyck Woodbury max at mtew.isa-geek.net
Wed Jul 14 15:18:28 CDT 2010


---
 dlls/gdi32/freetype.c |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/dlls/gdi32/freetype.c b/dlls/gdi32/freetype.c
index ddb3d24..964e23d 100644
--- a/dlls/gdi32/freetype.c
+++ b/dlls/gdi32/freetype.c
@@ -2105,7 +2105,7 @@ INT WineEngAddFontResourceEx(LPCWSTR file, DWORD flags, PVOID pdv)
         char *unixname;
 
         if(flags)
-            FIXME("Ignoring flags %x\n", flags);
+            FIXME_ONCE("Ignoring flags %x\n", flags);
 
         if((unixname = wine_get_unix_file_name(file)))
         {
@@ -2171,7 +2171,7 @@ HANDLE WineEngAddFontMemResourceEx(PVOID pbFont, DWORD cbFont, PVOID pdv, DWORD
 BOOL WineEngRemoveFontResourceEx(LPCWSTR file, DWORD flags, PVOID pdv)
 {
     GDI_CheckNotLock();
-    FIXME("(%s, %x, %p): stub\n", debugstr_w(file), flags, pdv);
+    FIXME_ONCE("(%s, %x, %p): stub\n", debugstr_w(file), flags, pdv);
     return TRUE;
 }
 
@@ -4336,7 +4336,7 @@ static FT_UInt GSUB_apply_feature(const GSUB_Header * header, const GSUB_Feature
         look = (const GSUB_LookupTable*)((const BYTE*)lookup + offset);
         TRACE("type %i, flag %x, subtables %i\n",GET_BE_WORD(look->LookupType),GET_BE_WORD(look->LookupFlag),GET_BE_WORD(look->SubTableCount));
         if (GET_BE_WORD(look->LookupType) != 1)
-            FIXME("We only handle SubType 1\n");
+            FIXME_ONCE("We only handle SubType 1\n");
         else
         {
             int j;
@@ -6300,7 +6300,7 @@ BOOL WINAPI GetRasterizerCaps( LPRASTERIZER_STATUS lprs, UINT cbNumBytes)
  */
 BOOL WineEngRealizationInfo(GdiFont *font, realization_info_t *info)
 {
-    FIXME("(%p, %p): stub!\n", font, info);
+    FIXME_ONCE("(%p, %p): stub!\n", font, info);
 
     info->flags = 1;
     if(FT_IS_SCALABLE(font->ft_face))
@@ -6660,25 +6660,25 @@ INT WineEngGetTextFace(GdiFont *font, INT count, LPWSTR str)
 
 INT WineEngAddFontResourceEx(LPCWSTR file, DWORD flags, PVOID pdv)
 {
-    FIXME("(%s, %x, %p): stub\n", debugstr_w(file), flags, pdv);
+    FIXME_ONCE("(%s, %x, %p): stub\n", debugstr_w(file), flags, pdv);
     return 1;
 }
 
 INT WineEngRemoveFontResourceEx(LPCWSTR file, DWORD flags, PVOID pdv)
 {
-    FIXME("(%s, %x, %p): stub\n", debugstr_w(file), flags, pdv);
+    FIXME_ONCE("(%s, %x, %p): stub\n", debugstr_w(file), flags, pdv);
     return TRUE;
 }
 
 HANDLE WineEngAddFontMemResourceEx(PVOID pbFont, DWORD cbFont, PVOID pdv, DWORD *pcFonts)
 {
-    FIXME("(%p, %u, %p, %p): stub\n", pbFont, cbFont, pdv, pcFonts);
+    FIXME_ONCE("(%p, %u, %p, %p): stub\n", pbFont, cbFont, pdv, pcFonts);
     return NULL;
 }
 
 UINT WineEngGetTextCharsetInfo(GdiFont *font, LPFONTSIGNATURE fs, DWORD flags)
 {
-    FIXME("(%p, %p, %u): stub\n", font, fs, flags);
+    FIXME_ONCE("(%p, %p, %u): stub\n", font, fs, flags);
     return DEFAULT_CHARSET;
 }
 
@@ -6689,7 +6689,7 @@ BOOL WineEngGetLinkedHFont(DC *dc, WCHAR c, HFONT *new_hfont, UINT *glyph)
 
 DWORD WineEngGetFontUnicodeRanges(GdiFont *font, LPGLYPHSET glyphset)
 {
-    FIXME("(%p, %p): stub\n", font, glyphset);
+    FIXME_ONCE("(%p, %p): stub\n", font, glyphset);
     return 0;
 }
 
-- 
1.7.1.1




More information about the wine-patches mailing list