[PATCH] gdi32: Improve some FIXMEs (try 2)

Christian Costa titan.costa at wanadoo.fr
Wed Jan 20 02:18:59 CST 2010


---

 dlls/gdi32/freetype.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)
-------------- next part --------------
diff --git a/dlls/gdi32/freetype.c b/dlls/gdi32/freetype.c
index a93cb60..a5c9933 100644
--- a/dlls/gdi32/freetype.c
+++ b/dlls/gdi32/freetype.c
@@ -2171,7 +2171,7 @@ HANDLE WineEngAddFontMemResourceEx(PVOID pbFont, DWORD cbFont, PVOID pdv, DWORD
 BOOL WineEngRemoveFontResourceEx(LPCWSTR file, DWORD flags, PVOID pdv)
 {
     GDI_CheckNotLock();
-    FIXME(":stub\n");
+    FIXME("(%s, %x, %p): stub\n", debugstr_w(file), flags, pdv);
     return TRUE;
 }
 
@@ -6679,25 +6679,25 @@ INT WineEngGetTextFace(GdiFont *font, INT count, LPWSTR str)
 
 INT WineEngAddFontResourceEx(LPCWSTR file, DWORD flags, PVOID pdv)
 {
-    FIXME(":stub\n");
+    FIXME("(%s, %x, %p): stub\n", debugstr_w(file), flags, pdv);
     return 1;
 }
 
 INT WineEngRemoveFontResourceEx(LPCWSTR file, DWORD flags, PVOID pdv)
 {
-    FIXME(":stub\n");
+    FIXME("(%s, %x, %p): stub\n", debugstr_w(file), flags, pdv);
     return TRUE;
 }
 
 HANDLE WineEngAddFontMemResourceEx(PVOID pbFont, DWORD cbFont, PVOID pdv, DWORD *pcFonts)
 {
-    FIXME(":stub\n");
+    FIXME("(%p, %u, %p, %p): stub\n", pbFont, cbFont, pdv, pcFonts);
     return NULL;
 }
 
 UINT WineEngGetTextCharsetInfo(GdiFont *font, LPFONTSIGNATURE fs, DWORD flags)
 {
-    FIXME(":stub\n");
+    FIXME("(%p, %p, %u): stub\n", font, fs, flags);
     return DEFAULT_CHARSET;
 }
 


More information about the wine-patches mailing list