Commit a1e1f034 authored by Roman Pišl's avatar Roman Pišl Committed by Alexandre Julliard

tapi32: Add lineGetDevConfigW stub.

parent 5f3a0156
......@@ -657,6 +657,15 @@ DWORD WINAPI lineGetDevConfigA(DWORD dwDeviceID, LPVARSTRING lpDeviceConfig, LPC
}
/***********************************************************************
* 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.@)
*/
DWORD WINAPI lineGetIDW(HLINE hLine, DWORD dwAddressID, HCALL hCall, DWORD dwSelect,
......
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment