Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53061 Signed-off-by: Roman Pišl rpisl@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 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
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53061 Signed-off-by: Roman Pišl rpisl@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)
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53061 Signed-off-by: Roman Pišl rpisl@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 97cd0b24d6f..83389131346 100644 --- a/dlls/tapi32/line.c +++ b/dlls/tapi32/line.c @@ -697,6 +697,15 @@ DWORD WINAPI lineGetIconA(DWORD dwDeviceID, LPCSTR lpszDeviceClass, HICON *lphIc return 0; }
+/*********************************************************************** + * lineGetIconW (TAPI32.@) + */ +DWORD WINAPI lineGetIconW(DWORD dwDeviceID, LPCWSTR lpszDeviceClass, HICON *lphIcon) +{ + FIXME("(%08lx, %s, %p): stub.\n", dwDeviceID, debugstr_w(lpszDeviceClass), lphIcon); + return 0; +} + /*********************************************************************** * lineGetLineDevStatus (TAPI32.@) */ diff --git a/dlls/tapi32/tapi32.spec b/dlls/tapi32/tapi32.spec index 7e44b92735d..64ac36310dc 100644 --- a/dlls/tapi32/tapi32.spec +++ b/dlls/tapi32/tapi32.spec @@ -56,6 +56,7 @@ @ stdcall lineGetIDW(long long long long ptr wstr) @ stdcall lineGetIcon(long str ptr) lineGetIconA @ stdcall lineGetIconA(long str ptr) +@ stdcall lineGetIconW(long wstr ptr) @ stdcall lineGetLineDevStatus(long ptr) lineGetLineDevStatusA @ stdcall lineGetLineDevStatusA(long ptr) @ stdcall lineGetMessage(long ptr long)
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53061 Signed-off-by: Roman Pišl rpisl@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 83389131346..a4f21a250c5 100644 --- a/dlls/tapi32/line.c +++ b/dlls/tapi32/line.c @@ -1468,6 +1468,15 @@ DWORD WINAPI lineSetDevConfigA(DWORD dwDeviceID, LPVOID lpDeviceConfig, DWORD dw return 0; }
+/*********************************************************************** + * lineSetDevConfigW (TAPI32.@) + */ +DWORD WINAPI lineSetDevConfigW(DWORD dwDeviceID, LPVOID lpDeviceConfig, DWORD dwSize, LPCWSTR lpszDeviceClass) +{ + FIXME("(%08lx, %p, %08lx, %s): stub.\n", dwDeviceID, lpDeviceConfig, dwSize, debugstr_w(lpszDeviceClass)); + return 0; +} + /*********************************************************************** * lineSetMediaControl (TAPI32.@) */ diff --git a/dlls/tapi32/tapi32.spec b/dlls/tapi32/tapi32.spec index 64ac36310dc..efb684161a1 100644 --- a/dlls/tapi32/tapi32.spec +++ b/dlls/tapi32/tapi32.spec @@ -110,6 +110,7 @@ @ stdcall lineSetCurrentLocation(long long) @ stdcall lineSetDevConfig(long ptr long str) lineSetDevConfigA @ stdcall lineSetDevConfigA(long ptr long str) +@ stdcall lineSetDevConfigW(long ptr long wstr) @ stdcall lineSetMediaControl(long long long long ptr long ptr long ptr long ptr long) @ stdcall lineSetMediaMode(long long) @ stdcall lineSetNumRings(long long long)