[PATCH 2/4] tapi32: Add lineGetDevConfigW stub.

Roman Pišl rpisl at seznam.cz
Sat May 28 06:18:02 CDT 2022


Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53061
Signed-off-by: Roman Pišl <rpisl at seznam.cz>
---
 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)
-- 
2.30.2




More information about the wine-devel mailing list