Commit 849bbd90 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

difxapi: Add stubs for DriverPackageGetPath{A,W}.

parent d57ab7fd
@ 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;
}
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