Roman Pišl : tapi32: Add lineGetCallInfoW stub.

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


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

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

tapi32: Add lineGetCallInfoW 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 75bfe837f3d..2dbca2aba3e 100644
--- a/dlls/tapi32/line.c
+++ b/dlls/tapi32/line.c
@@ -296,6 +296,15 @@ DWORD WINAPI lineGetCallInfoA(HCALL hCall, LPLINECALLINFO lpCallInfo)
     return 0;
 }
 
+/***********************************************************************
+ *		lineGetCallInfoW (TAPI32.@)
+ */
+DWORD WINAPI lineGetCallInfoW(HCALL hCall, LPLINECALLINFO lpCallInfo)
+{
+    FIXME("(%p, %p): stub.\n", hCall, lpCallInfo);
+    return 0;
+}
+
 /***********************************************************************
  *		lineGetCallStatus (TAPI32.@)
  */
diff --git a/dlls/tapi32/tapi32.spec b/dlls/tapi32/tapi32.spec
index 6c01a870479..757e387c8d2 100644
--- a/dlls/tapi32/tapi32.spec
+++ b/dlls/tapi32/tapi32.spec
@@ -39,6 +39,7 @@
 @ stdcall lineGetAppPriorityA(str long ptr long ptr ptr)
 @ stdcall lineGetCallInfo(long ptr) lineGetCallInfoA
 @ stdcall lineGetCallInfoA(long ptr)
+@ stdcall lineGetCallInfoW(long ptr)
 @ stdcall lineGetCallStatus(long ptr)
 @ stdcall lineGetConfRelatedCalls(long ptr)
 @ stdcall lineGetCountry(long long ptr) lineGetCountryA




More information about the wine-cvs mailing list