- FIXME -> TRACE for unimplemented functions

svn path=/trunk/; revision=39498
This commit is contained in:
Dmitry Chapyshev 2009-02-08 19:14:48 +00:00
parent d258115b75
commit be4a17e107
3 changed files with 7 additions and 4 deletions

View file

@ -181,10 +181,10 @@
181 stdcall -noname RegisterShellHook(long long) 181 stdcall -noname RegisterShellHook(long long)
182 varargs ShellMessageBoxA(long long str str long) 182 varargs ShellMessageBoxA(long long str str long)
183 varargs ShellMessageBoxW(long long wstr wstr long) 183 varargs ShellMessageBoxW(long long wstr wstr long)
184 stdcall -noname ArrangeWindows(long long long long long) # Fixme 184 stdcall -noname ArrangeWindows(long long long long long)
185 stdcall -noname SHHandleDiskFull(ptr long) # Fixme 185 stdcall -noname SHHandleDiskFull(ptr long) # Fixme
186 stdcall -noname ILGetDisplayNameEx(ptr ptr ptr long) 186 stdcall -noname ILGetDisplayNameEx(ptr ptr ptr long)
187 stdcall -noname ILGetPseudoNameW(ptr ptr wstr long) # Fixme 187 stdcall -noname ILGetPseudoNameW(ptr ptr wstr long)
188 stdcall -noname ShellDDEInit(long) 188 stdcall -noname ShellDDEInit(long)
189 stdcall ILCreateFromPathA(str) 189 stdcall ILCreateFromPathA(str)
190 stdcall ILCreateFromPathW(wstr) 190 stdcall ILCreateFromPathW(wstr)

View file

@ -521,7 +521,8 @@ WORD WINAPI ArrangeWindows(
WORD cKids, WORD cKids,
CONST HWND * lpKids) CONST HWND * lpKids)
{ {
FIXME("(%p 0x%08x %p 0x%04x %p):stub.\n", /* Unimplemented in WinXP SP3 */
TRACE("(%p 0x%08x %p 0x%04x %p):stub.\n",
hwndParent, dwReserved, lpRect, cKids, lpKids); hwndParent, dwReserved, lpRect, cKids, lpKids);
return 0; return 0;
} }

View file

@ -1098,7 +1098,9 @@ BOOL
WINAPI WINAPI
ILGetPseudoNameW(LPCITEMIDLIST pidl1, LPCITEMIDLIST pidl2, LPWSTR szStr, INT iUnknown) ILGetPseudoNameW(LPCITEMIDLIST pidl1, LPCITEMIDLIST pidl2, LPWSTR szStr, INT iUnknown)
{ {
FIXME("ILGetPseudoNameW() stub\n"); /* Unimplemented in WinXP SP3 */
TRACE("ILGetPseudoNameW() stub\n");
*szStr = 0;
return FALSE; return FALSE;
} }