Roman Pišl : tapi32: Add lineGetDevConfigW stub.

Alexandre Julliard julliard at winehq.org
Mon May 30 15:34:59 CDT 2022


Module: wine
Branch: master
Commit: a1e1f0346cff8848616a877151779f01ecf3c7c9
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=a1e1f0346cff8848616a877151779f01ecf3c7c9

Author: Roman Pišl <rpisl at seznam.cz>
Date:   Sat May 28 13:18:02 2022 +0200

tapi32: Add lineGetDevConfigW stub.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53061
Signed-off-by: Roman Pišl <rpisl at seznam.cz>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/tapi32/line.c      | 9 +++++++++
 dlls/tapi32/tapi32.spec | 1 +
 2 files changed, 10 insertions(+)

diff --git a/dlls/tapi32/line.c b/dlls/tapi32/line.c
index 2dbca2aba3e..97cd0b24d6f 100644
--- a/dlls/tapi32/line.c
+++ b/dlls/tapi32/line.c
@@ -656,6 +656,15 @@ DWORD WINAPI lineGetDevConfigA(DWORD dwDeviceID, LPVARSTRING lpDeviceConfig, LPC
     return 0;
 }
 
+/***********************************************************************
+ *		lineGetDevConfigW (TAPI32.@)
+ */
+DWORD WINAPI lineGetDevConfigW(DWORD dwDeviceID, LPVARSTRING lpDeviceConfig, LPCWSTR lpszDeviceClass)
+{
+    FIXME("(%08lx, %p, %s): stub.\n", dwDeviceID, lpDeviceConfig, debugstr_w(lpszDeviceClass));
+    return 0;
+}
+
 /***********************************************************************
  *		lineGetIDW (TAPI32.@)
  */
diff --git a/dlls/tapi32/tapi32.spec b/dlls/tapi32/tapi32.spec
index 757e387c8d2..7e44b92735d 100644
--- a/dlls/tapi32/tapi32.spec
+++ b/dlls/tapi32/tapi32.spec
@@ -50,6 +50,7 @@
 @ stdcall lineGetDevCapsW(long long long long ptr)
 @ stdcall lineGetDevConfig(long ptr str) lineGetDevConfigA
 @ stdcall lineGetDevConfigA(long ptr str)
+@ stdcall lineGetDevConfigW(long ptr wstr)
 @ stdcall lineGetID(long long long long ptr str) lineGetIDA
 @ stdcall lineGetIDA(long long long long ptr str)
 @ stdcall lineGetIDW(long long long long ptr wstr)




More information about the wine-cvs mailing list