Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
e2b88dcc
Commit
e2b88dcc
authored
Apr 05, 2013
by
Piotr Caban
Committed by
Alexandre Julliard
Apr 05, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tapi32: Add more Unicode functions stubs.
parent
4716cd37
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
0 deletions
+54
-0
line.c
dlls/tapi32/line.c
+49
-0
tapi32.spec
dlls/tapi32/tapi32.spec
+5
-0
No files found.
dlls/tapi32/line.c
View file @
e2b88dcc
...
...
@@ -134,6 +134,15 @@ DWORD WINAPI lineConfigDialogA(DWORD dwDeviceID, HWND hwndOwner, LPCSTR lpszDevi
}
/***********************************************************************
* 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.@)
*/
DWORD
WINAPI
lineConfigDialogEditA
(
DWORD
dwDeviceID
,
HWND
hwndOwner
,
LPCSTR
lpszDeviceClass
,
LPVOID
const
lpDeviceConfigIn
,
DWORD
dwSize
,
LPVARSTRING
lpDeviceConfigOut
)
...
...
@@ -188,6 +197,15 @@ DWORD WINAPI lineDialA(HCALL hCall, LPCSTR lpszDestAddress, DWORD dwCountryCode)
}
/***********************************************************************
* 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.@)
*/
DWORD
WINAPI
lineDrop
(
HCALL
hCall
,
LPCSTR
lpsUserUserInfo
,
DWORD
dwSize
)
...
...
@@ -466,6 +484,14 @@ DWORD WINAPI lineGetCountryA(DWORD dwCountryID, DWORD dwAPIVersion, LPLINECOUNTR
}
/***********************************************************************
* lineGetCountry (TAPI32.@)
*/
DWORD
WINAPI
lineGetCountryW
(
DWORD
dwCountryID
,
DWORD
dwAPIVersion
,
LPLINECOUNTRYLIST
lpLineCountryList
)
{
return
lineGetCountryA
(
dwCountryID
,
dwAPIVersion
,
lpLineCountryList
);
}
/***********************************************************************
* lineGetDevCapsW (TAPI32.@)
*/
DWORD
WINAPI
lineGetDevCapsW
(
HLINEAPP
hLineApp
,
DWORD
dwDeviceID
,
DWORD
dwAPIVersion
,
...
...
@@ -1390,6 +1416,18 @@ DWORD WINAPI lineTranslateAddressA(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dw
}
/***********************************************************************
* 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.@)
*/
DWORD
WINAPI
lineTranslateDialogA
(
HLINEAPP
hLineApp
,
DWORD
dwDeviceID
,
DWORD
dwAPIVersion
,
HWND
hwndOwner
,
LPCSTR
lpszAddressIn
)
...
...
@@ -1399,6 +1437,17 @@ DWORD WINAPI lineTranslateDialogA(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwA
}
/***********************************************************************
* 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.@)
*/
DWORD
WINAPI
lineUncompleteCall
(
HLINE
hLine
,
DWORD
dwCompletionID
)
...
...
dlls/tapi32/tapi32.spec
View file @
e2b88dcc
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment