difxapi: Add stubs for DriverPackageGetPath{A,W}.
This commit is contained in:
parent
d57ab7fd11
commit
849bbd90ac
|
@ -1,7 +1,7 @@
|
|||
@ stub DIFXAPISetLogCallbackA
|
||||
@ stub DIFXAPISetLogCallbackW
|
||||
@ stub DriverPackageGetPathA
|
||||
@ stub DriverPackageGetPathW
|
||||
@ stdcall DriverPackageGetPathA(str ptr ptr)
|
||||
@ stdcall DriverPackageGetPathW(wstr ptr ptr)
|
||||
@ stdcall DriverPackageInstallA(str long ptr ptr)
|
||||
@ stdcall DriverPackageInstallW(wstr long ptr ptr)
|
||||
@ stdcall DriverPackagePreinstallA(str long)
|
||||
|
|
|
@ -64,3 +64,15 @@ DWORD WINAPI DriverPackageUninstallW(LPCWSTR inf, DWORD flags, PCINSTALLERINFO_W
|
|||
if (reboot) *reboot = FALSE;
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
DWORD WINAPI DriverPackageGetPathA(LPCSTR inf, CHAR *dest, DWORD *count)
|
||||
{
|
||||
FIXME("(%s, %p, %p) stub\n", wine_dbgstr_a(inf), dest, count);
|
||||
return ERROR_UNSUPPORTED_TYPE;
|
||||
}
|
||||
|
||||
DWORD WINAPI DriverPackageGetPathW(LPCWSTR inf, WCHAR *dest, DWORD *count)
|
||||
{
|
||||
FIXME("(%s, %p, %p) stub\n", wine_dbgstr_w(inf), dest, count);
|
||||
return ERROR_UNSUPPORTED_TYPE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue