Commit 48091559 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

apphelp: Add SdbGetAppPatchDir stub.

parent 743a47d3
......@@ -111,3 +111,9 @@ void WINAPI SdbCloseDatabase(PDB pdb)
{
FIXME("stub: %p\n", pdb);
}
void WINAPI SdbGetAppPatchDir(HSDB hsdb, WCHAR *path, DWORD size)
{
FIXME("stub: %p %p %d\n", hsdb, path, size);
if (size && path) *path = 0;
}
......@@ -49,7 +49,7 @@
@ stub SdbFreeFileInfo
@ stub SdbFreeFlagInfo
@ stub SdbGetAppCompatDataSize
@ stub SdbGetAppPatchDir
@ stdcall SdbGetAppPatchDir(long ptr long)
@ stub SdbGetBinaryTagData
@ stub SdbGetDatabaseID
@ stub SdbGetDatabaseInformation
......
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