Commit 30dd2c23 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

apphelp: Enable compilation with long types.

parent 71e90100
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = apphelp.dll
EXTRADLLFLAGS = -Wb,--prefer-native
......
......@@ -74,7 +74,7 @@ BOOL WINAPI ShimFlushCache( HWND hwnd, HINSTANCE instance, LPCSTR cmdline, int c
HSDB WINAPI SdbInitDatabase(DWORD flags, LPCWSTR path)
{
FIXME("stub: %08x %s\n", flags, debugstr_w(path));
FIXME("stub: %08lx %s\n", flags, debugstr_w(path));
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return NULL;
}
......@@ -88,7 +88,7 @@ PDB WINAPI SdbOpenDatabase(LPCWSTR path, PATH_TYPE type)
TAGID WINAPI SdbGetFirstChild(PDB pdb, TAGID parent)
{
FIXME("stub: %p %d\n", pdb, parent);
FIXME("stub: %p %ld\n", pdb, parent);
return TAGID_NULL;
}
......@@ -99,6 +99,6 @@ void WINAPI SdbCloseDatabase(PDB pdb)
void WINAPI SdbGetAppPatchDir(HSDB hsdb, WCHAR *path, DWORD size)
{
FIXME("stub: %p %p %d\n", hsdb, path, size);
FIXME("stub: %p %p %ld\n", hsdb, path, size);
if (size && path) *path = 0;
}
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