Christian Costa : gdi32: Improve some FIXMEs.

Alexandre Julliard julliard at winehq.org
Wed Jan 20 14:29:44 CST 2010


Module: wine
Branch: master
Commit: 132ba27f2b5e5cd41e5d40a1e3d4667b082b6912
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=132ba27f2b5e5cd41e5d40a1e3d4667b082b6912

Author: Christian Costa <titan.costa at wanadoo.fr>
Date:   Wed Jan 20 09:18:59 2010 +0100

gdi32: Improve some FIXMEs.

---

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

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-cvs mailing list