1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 20:06:18 +00:00

tapi32: Add more Unicode functions stubs.

This commit is contained in:
Piotr Caban 2013-04-05 16:53:43 +02:00 committed by Alexandre Julliard
parent 4716cd37ee
commit e2b88dcc14
2 changed files with 54 additions and 0 deletions

View File

@ -133,6 +133,15 @@ DWORD WINAPI lineConfigDialogA(DWORD dwDeviceID, HWND hwndOwner, LPCSTR lpszDevi
return 0;
}
/***********************************************************************
* lineConfigDialogW (TAPI32.@)
*/
DWORD WINAPI lineConfigDialogW(DWORD dwDeviceID, HWND hwndOwner, LPCWSTR lpszDeviceClass)
{
FIXME("(%08x, %p, %s): stub.\n", dwDeviceID, hwndOwner, debugstr_w(lpszDeviceClass));
return 0;
}
/***********************************************************************
* lineConfigDialogEdit (TAPI32.@)
*/
@ -187,6 +196,15 @@ DWORD WINAPI lineDialA(HCALL hCall, LPCSTR lpszDestAddress, DWORD dwCountryCode)
return 1;
}
/***********************************************************************
* lineDialW (TAPI32.@)
*/
DWORD WINAPI lineDialW(HCALL hCall, LPCWSTR lpszDestAddress, DWORD dwCountryCode)
{
FIXME("(%p, %s, %08x): stub.\n", hCall, debugstr_w(lpszDestAddress), dwCountryCode);
return 1;
}
/***********************************************************************
* lineDrop (TAPI32.@)
*/
@ -465,6 +483,14 @@ DWORD WINAPI lineGetCountryA(DWORD dwCountryID, DWORD dwAPIVersion, LPLINECOUNTR
return 0;
}
/***********************************************************************
* lineGetCountry (TAPI32.@)
*/
DWORD WINAPI lineGetCountryW(DWORD dwCountryID, DWORD dwAPIVersion, LPLINECOUNTRYLIST lpLineCountryList)
{
return lineGetCountryA(dwCountryID, dwAPIVersion, lpLineCountryList);
}
/***********************************************************************
* lineGetDevCapsW (TAPI32.@)
*/
@ -1389,6 +1415,18 @@ DWORD WINAPI lineTranslateAddressA(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dw
return 0;
}
/***********************************************************************
* lineTranslateAddressW (TAPI32.@)
*/
DWORD WINAPI lineTranslateAddressW(HLINEAPP hLineApp, DWORD dwDeviceID,
DWORD dwAPIVersion, LPCWSTR lpszAddressIn, DWORD dwCard,
DWORD dwTranslateOptions, LPLINETRANSLATEOUTPUT lpTranslateOutput)
{
FIXME("(%p, %08x, %08x, %s, %08x, %08x, %p): stub.\n", hLineApp, dwDeviceID, dwAPIVersion,
debugstr_w(lpszAddressIn), dwCard, dwTranslateOptions, lpTranslateOutput);
return 0;
}
/***********************************************************************
* lineTranslateDialog (TAPI32.@)
*/
@ -1398,6 +1436,17 @@ DWORD WINAPI lineTranslateDialogA(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwA
return 0;
}
/***********************************************************************
* lineTranslateDialogW (TAPI32.@)
*/
DWORD WINAPI lineTranslateDialogW(HLINEAPP hLineApp, DWORD dwDeviceID,
DWORD dwAPIVersion, HWND hwndOwner, LPCWSTR lpszAddressIn)
{
FIXME("(%p, %08x, %08x, %p, %s): stub.\n", hLineApp, dwDeviceID,
dwAPIVersion, hwndOwner, debugstr_w(lpszAddressIn));
return 0;
}
/***********************************************************************
* lineUncompleteCall (TAPI32.@)
*/

View File

@ -11,6 +11,7 @@
@ stdcall lineCompleteTransfer(long long ptr long)
@ stdcall lineConfigDialog(long long str) lineConfigDialogA
@ stdcall lineConfigDialogA(long long str)
@ stdcall lineConfigDialogW(long long wstr)
@ stdcall lineConfigDialogEdit(long long str ptr long ptr) lineConfigDialogEditA
@ stdcall lineConfigDialogEditA(long long str ptr long ptr)
@ stdcall lineConfigProvider(long long)
@ -19,6 +20,7 @@
@ stdcall lineDevSpecificFeature(long long ptr long)
@ stdcall lineDial(long str long) lineDialA
@ stdcall lineDialA(long str long)
@ stdcall lineDialW(long wstr long)
@ stdcall lineDrop(long str long)
@ stdcall lineForward(long long long ptr long ptr ptr) lineForwardA
@ stdcall lineForwardA(long long long ptr long ptr ptr)
@ -41,6 +43,7 @@
@ stdcall lineGetConfRelatedCalls(long ptr)
@ stdcall lineGetCountry(long long ptr) lineGetCountryA
@ stdcall lineGetCountryA(long long ptr)
@ stdcall lineGetCountryW(long long ptr)
@ stdcall lineGetDevCaps(long long long long ptr) lineGetDevCapsA
@ stdcall lineGetDevCapsA(long long long long ptr)
@ stdcall lineGetDevCapsW(long long long long ptr)
@ -117,8 +120,10 @@
@ stdcall lineSwapHold(long long)
@ stdcall lineTranslateAddress(long long long str long long ptr) lineTranslateAddressA
@ stdcall lineTranslateAddressA(long long long str long long ptr)
@ stdcall lineTranslateAddressW(long long long wstr long long ptr)
@ stdcall lineTranslateDialog(long long long long str) lineTranslateDialogA
@ stdcall lineTranslateDialogA(long long long long str)
@ stdcall lineTranslateDialogW(long long long long wstr)
@ stdcall lineUncompleteCall(long long)
@ stdcall lineUnhold(long)
@ stdcall lineUnpark(long long ptr str) lineUnparkA