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

This commit is contained in:
André Hentschel 2013-06-02 14:37:57 +02:00 committed by Alexandre Julliard
parent 849bbd90ac
commit 5bee8b4e40
2 changed files with 12 additions and 2 deletions

View file

@ -1,5 +1,5 @@
@ stub DIFXAPISetLogCallbackA
@ stub DIFXAPISetLogCallbackW
@ stdcall DIFXAPISetLogCallbackA(ptr ptr)
@ stdcall DIFXAPISetLogCallbackW(ptr ptr)
@ stdcall DriverPackageGetPathA(str ptr ptr)
@ stdcall DriverPackageGetPathW(wstr ptr ptr)
@ stdcall DriverPackageInstallA(str long ptr ptr)

View file

@ -76,3 +76,13 @@ 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;
}
VOID WINAPI DIFXAPISetLogCallbackA(DIFXAPILOGCALLBACK_A cb, VOID *ctx)
{
FIXME("(%p, %p) stub\n", cb, ctx);
}
VOID WINAPI DIFXAPISetLogCallbackW(DIFXAPILOGCALLBACK_W cb, VOID *ctx)
{
FIXME("(%p, %p) stub\n", cb, ctx);
}