tapi32: Stub lineGetProviderListW.
This commit is contained in:
parent
2c6e611c8a
commit
f5fc2ca4c5
|
@ -520,12 +520,21 @@ DWORD WINAPI lineGetNumRings(HLINE hLine, DWORD dwAddressID, LPDWORD lpdwNumRing
|
|||
}
|
||||
|
||||
/***********************************************************************
|
||||
* lineGetProviderList (TAPI32.@)
|
||||
* lineGetProviderListA (TAPI32.@)
|
||||
*/
|
||||
DWORD WINAPI lineGetProviderListA(DWORD dwAPIVersion, LPLINEPROVIDERLIST lpProviderList)
|
||||
{
|
||||
FIXME("(%08x, %p): stub.\n", dwAPIVersion, lpProviderList);
|
||||
return 0;
|
||||
return LINEERR_OPERATIONFAILED;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* lineGetProviderListW (TAPI32.@)
|
||||
*/
|
||||
DWORD WINAPI lineGetProviderListW(DWORD dwAPIVersion, LPLINEPROVIDERLIST lpProviderList)
|
||||
{
|
||||
FIXME("(%08x, %p): stub.\n", dwAPIVersion, lpProviderList);
|
||||
return LINEERR_OPERATIONFAILED;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
|
|
|
@ -54,6 +54,7 @@
|
|||
@ stdcall lineGetNumRings(long long ptr)
|
||||
@ stdcall lineGetProviderList(long ptr) lineGetProviderListA
|
||||
@ stdcall lineGetProviderListA(long ptr)
|
||||
@ stdcall lineGetProviderListW(long ptr)
|
||||
@ stdcall lineGetRequest(long long ptr) lineGetRequestA
|
||||
@ stdcall lineGetRequestA(long long ptr)
|
||||
@ stdcall lineGetStatusMessages(long ptr ptr)
|
||||
|
|
|
@ -893,7 +893,9 @@ DWORD WINAPI lineGetIcon(DWORD,LPCSTR,HICON *);
|
|||
DWORD WINAPI lineGetLineDevStatus(HLINE,LPLINEDEVSTATUS);
|
||||
DWORD WINAPI lineGetNewCalls(HLINE,DWORD,DWORD,LPLINECALLLIST);
|
||||
DWORD WINAPI lineGetNumRings(HLINE,DWORD,LPDWORD);
|
||||
DWORD WINAPI lineGetProviderList(DWORD dwAPIVersion,LPLINEPROVIDERLIST);
|
||||
DWORD WINAPI lineGetProviderListA(DWORD,LPLINEPROVIDERLIST);
|
||||
DWORD WINAPI lineGetProviderListW(DWORD,LPLINEPROVIDERLIST);
|
||||
#define lineGetProviderList WINELIB_NAME_AW(lineGetProviderList)
|
||||
DWORD WINAPI lineGetRequest(HLINEAPP,DWORD,LPVOID);
|
||||
DWORD WINAPI lineGetStatusMessages(HLINE,LPDWORD,LPDWORD);
|
||||
DWORD WINAPI lineGetTranslateCaps(HLINEAPP,DWORD,LPLINETRANSLATECAPS);
|
||||
|
@ -961,7 +963,6 @@ DWORD WINAPI lineGetDevConfigA(DWORD,LPVARSTRING,LPCSTR);
|
|||
DWORD WINAPI lineGetIDA(HLINE,DWORD,HCALL,DWORD,LPVARSTRING,LPCSTR);
|
||||
DWORD WINAPI lineGetIconA(DWORD,LPCSTR,HICON *);
|
||||
DWORD WINAPI lineGetLineDevStatusA(HLINE,LPLINEDEVSTATUS);
|
||||
DWORD WINAPI lineGetProviderListA(DWORD dwAPIVersion,LPLINEPROVIDERLIST);
|
||||
DWORD WINAPI lineGetRequestA(HLINEAPP,DWORD,LPVOID);
|
||||
DWORD WINAPI lineGetTranslateCapsA(HLINEAPP,DWORD,LPLINETRANSLATECAPS);
|
||||
DWORD WINAPI lineHandoffA(HCALL,LPCSTR,DWORD);
|
||||
|
|
Loading…
Reference in New Issue