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;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
HSDB WINAPI SdbInitDatabase(DWORD flags, LPCWSTR path)
|
HSDB WINAPI SdbInitDatabase(DWORD flags, LPCWSTR path)
|
||||||
{
|
{
|
||||||
FIXME("stub: %08x %s\n", flags, debugstr_w(path));
|
FIXME("stub: %08x %s\n", flags, debugstr_w(path));
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
return NULL;
|
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 SdbOpenApphelpInformation
|
||||||
@ stub SdbOpenApphelpInformationByID
|
@ stub SdbOpenApphelpInformationByID
|
||||||
@ stub SdbOpenApphelpResourceFile
|
@ stub SdbOpenApphelpResourceFile
|
||||||
@ stub SdbOpenDatabase
|
@ stdcall SdbOpenDatabase(wstr long)
|
||||||
@ stub SdbOpenDbFromGuid
|
@ stub SdbOpenDbFromGuid
|
||||||
@ stub SdbOpenLocalDatabase
|
@ stub SdbOpenLocalDatabase
|
||||||
@ stub SdbPackAppCompatData
|
@ stub SdbPackAppCompatData
|
||||||
|
|
Loading…
Reference in New Issue