apphelp: Add a stub for SdbOpenDatabase.
This commit is contained in:
parent
a71fb845cd
commit
58cbdf26c9
|
@ -83,10 +83,16 @@ BOOL WINAPI ShimFlushCache( HWND hwnd, HINSTANCE instance, LPCSTR cmdline, int c
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
HSDB WINAPI SdbInitDatabase(DWORD flags, LPCWSTR path)
|
||||
{
|
||||
FIXME("stub: %08x %s\n", flags, debugstr_w(path));
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
PDB WINAPI SdbOpenDatabase(LPCWSTR path, PATH_TYPE type)
|
||||
{
|
||||
FIXME("stub: %s %08x\n", debugstr_w(path), type);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
@ -96,7 +96,7 @@
|
|||
@ stub SdbOpenApphelpInformation
|
||||
@ stub SdbOpenApphelpInformationByID
|
||||
@ stub SdbOpenApphelpResourceFile
|
||||
@ stub SdbOpenDatabase
|
||||
@ stdcall SdbOpenDatabase(wstr long)
|
||||
@ stub SdbOpenDbFromGuid
|
||||
@ stub SdbOpenLocalDatabase
|
||||
@ stub SdbPackAppCompatData
|
||||
|
|
Loading…
Reference in New Issue