mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:54:13 +00:00
tapi32: Add stub lineInitializeExW.
This commit is contained in:
parent
1545645484
commit
51572d8a35
2 changed files with 11 additions and 0 deletions
|
@ -1033,6 +1033,16 @@ LONG WINAPI lineInitializeExA(LPHLINEAPP lphLineApp, HINSTANCE hInstance, LINECA
|
|||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* lineInitializeExW (TAPI32.@)
|
||||
*/
|
||||
LONG WINAPI lineInitializeExW(LPHLINEAPP lphLineApp, HINSTANCE hInstance, LINECALLBACK lpfnCallback, LPCWSTR lpszFriendlyAppName, LPDWORD lpdwNumDevs, LPDWORD lpdwAPIVersion, LPLINEINITIALIZEEXPARAMS lpLineInitializeExParams)
|
||||
{
|
||||
FIXME("(%p, %p, %p, %s, %p, %p, %p): stub.\n", lphLineApp, hInstance,
|
||||
lpfnCallback, debugstr_w(lpszFriendlyAppName), lpdwNumDevs, lpdwAPIVersion, lpLineInitializeExParams);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* lineMakeCallW (TAPI32.@)
|
||||
*/
|
||||
|
|
|
@ -69,6 +69,7 @@
|
|||
@ stdcall lineHold(long)
|
||||
@ stdcall lineInitialize(ptr long ptr str ptr)
|
||||
@ stdcall lineInitializeExA(ptr long ptr str ptr ptr ptr)
|
||||
@ stdcall lineInitializeExW(ptr long ptr wstr ptr ptr ptr)
|
||||
@ stdcall lineMakeCall(long ptr str long ptr) lineMakeCallA
|
||||
@ stdcall lineMakeCallA(long ptr str long ptr)
|
||||
@ stdcall lineMakeCallW(long ptr wstr long ptr)
|
||||
|
|
Loading…
Reference in a new issue