From: "Roman Pišl" Subject: [PATCH 2/4] tapi32: Add lineGetDevConfigW stub. Message-Id: <20220528111804.29371-2-rpisl@seznam.cz> Date: Sat, 28 May 2022 13:18:02 +0200 In-Reply-To: <20220528111804.29371-1-rpisl@seznam.cz> References: <20220528111804.29371-1-rpisl@seznam.cz> Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53061 Signed-off-by: Roman Pišl --- 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