Commit 132ba27f authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

gdi32: Improve some FIXMEs.

parent 3b20cb11
...@@ -2171,7 +2171,7 @@ HANDLE WineEngAddFontMemResourceEx(PVOID pbFont, DWORD cbFont, PVOID pdv, DWORD ...@@ -2171,7 +2171,7 @@ HANDLE WineEngAddFontMemResourceEx(PVOID pbFont, DWORD cbFont, PVOID pdv, DWORD
BOOL WineEngRemoveFontResourceEx(LPCWSTR file, DWORD flags, PVOID pdv) BOOL WineEngRemoveFontResourceEx(LPCWSTR file, DWORD flags, PVOID pdv)
{ {
GDI_CheckNotLock(); GDI_CheckNotLock();
FIXME(":stub\n"); FIXME("(%s, %x, %p): stub\n", debugstr_w(file), flags, pdv);
return TRUE; return TRUE;
} }
...@@ -6679,25 +6679,25 @@ INT WineEngGetTextFace(GdiFont *font, INT count, LPWSTR str) ...@@ -6679,25 +6679,25 @@ INT WineEngGetTextFace(GdiFont *font, INT count, LPWSTR str)
INT WineEngAddFontResourceEx(LPCWSTR file, DWORD flags, PVOID pdv) INT WineEngAddFontResourceEx(LPCWSTR file, DWORD flags, PVOID pdv)
{ {
FIXME(":stub\n"); FIXME("(%s, %x, %p): stub\n", debugstr_w(file), flags, pdv);
return 1; return 1;
} }
INT WineEngRemoveFontResourceEx(LPCWSTR file, DWORD flags, PVOID pdv) INT WineEngRemoveFontResourceEx(LPCWSTR file, DWORD flags, PVOID pdv)
{ {
FIXME(":stub\n"); FIXME("(%s, %x, %p): stub\n", debugstr_w(file), flags, pdv);
return TRUE; return TRUE;
} }
HANDLE WineEngAddFontMemResourceEx(PVOID pbFont, DWORD cbFont, PVOID pdv, DWORD *pcFonts) 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; return NULL;
} }
UINT WineEngGetTextCharsetInfo(GdiFont *font, LPFONTSIGNATURE fs, DWORD flags) UINT WineEngGetTextCharsetInfo(GdiFont *font, LPFONTSIGNATURE fs, DWORD flags)
{ {
FIXME(":stub\n"); FIXME("(%p, %p, %u): stub\n", font, fs, flags);
return DEFAULT_CHARSET; return DEFAULT_CHARSET;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment