=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: difxapi: Add stubs for DIFXAPISetLogCallback{A, W}.

Alexandre Julliard julliard at winehq.org
Mon Jun 3 16:06:32 CDT 2013


Module: wine
Branch: master
Commit: 5bee8b4e409f4f93bb15669d4be32d9ab6448b43
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=5bee8b4e409f4f93bb15669d4be32d9ab6448b43

Author: André Hentschel <nerv at dawncrow.de>
Date:   Sun Jun  2 14:37:57 2013 +0200

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

---

 dlls/difxapi/difxapi.spec |    4 ++--
 dlls/difxapi/main.c       |   10 ++++++++++
 2 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/dlls/difxapi/difxapi.spec b/dlls/difxapi/difxapi.spec
index ad03719..33a805b 100644
--- a/dlls/difxapi/difxapi.spec
+++ b/dlls/difxapi/difxapi.spec
@@ -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)
diff --git a/dlls/difxapi/main.c b/dlls/difxapi/main.c
index 820a4b3..8a2679c 100644
--- a/dlls/difxapi/main.c
+++ b/dlls/difxapi/main.c
@@ -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);
+}




More information about the wine-cvs mailing list