Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
1f5c71fa
Commit
1f5c71fa
authored
Feb 23, 2009
by
Andrew Nguyen
Committed by
Alexandre Julliard
Feb 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tapi32: Stub lineAddProviderW.
parent
f5fc2ca4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
4 deletions
+15
-4
line.c
dlls/tapi32/line.c
+11
-2
tapi32.spec
dlls/tapi32/tapi32.spec
+1
-0
tapi.h
include/tapi.h
+3
-2
No files found.
dlls/tapi32/line.c
View file @
1f5c71fa
...
...
@@ -53,12 +53,21 @@ DWORD WINAPI lineAccept(HCALL hCall, LPCSTR lpsUserUserInfo, DWORD dwSize)
}
/***********************************************************************
* lineAddProvider (TAPI32.@)
* lineAddProvider
A
(TAPI32.@)
*/
DWORD
WINAPI
lineAddProviderA
(
LPCSTR
lpszProviderName
,
HWND
hwndOwner
,
LPDWORD
lpdwPermanentProviderID
)
{
FIXME
(
"(%s, %p, %p): stub.
\n
"
,
lpszProviderName
,
hwndOwner
,
lpdwPermanentProviderID
);
return
1
;
return
LINEERR_OPERATIONFAILED
;
}
/***********************************************************************
* lineAddProviderW (TAPI32.@)
*/
DWORD
WINAPI
lineAddProviderW
(
LPCWSTR
lpszProviderName
,
HWND
hwndOwner
,
LPDWORD
lpdwPermanentProviderID
)
{
FIXME
(
"(%s, %p, %p): stub.
\n
"
,
wine_dbgstr_w
(
lpszProviderName
),
hwndOwner
,
lpdwPermanentProviderID
);
return
LINEERR_OPERATIONFAILED
;
}
/***********************************************************************
...
...
dlls/tapi32/tapi32.spec
View file @
1f5c71fa
@ stdcall lineAccept(long str long)
@ stdcall lineAddProvider(str long ptr) lineAddProviderA
@ stdcall lineAddProviderA(str long ptr)
@ stdcall lineAddProviderW(wstr long ptr)
@ stdcall lineAddToConference(long long)
@ stdcall lineAnswer(long str long)
@ stdcall lineBlindTransfer(long str long) lineBlindTransferA
...
...
include/tapi.h
View file @
1f5c71fa
...
...
@@ -859,7 +859,9 @@ typedef struct varstring_tag {
/* line functions */
DWORD
WINAPI
lineAccept
(
HCALL
,
LPCSTR
,
DWORD
);
DWORD
WINAPI
lineAddProvider
(
LPCSTR
,
HWND
,
LPDWORD
);
DWORD
WINAPI
lineAddProviderA
(
LPCSTR
,
HWND
,
LPDWORD
);
DWORD
WINAPI
lineAddProviderW
(
LPCWSTR
,
HWND
,
LPDWORD
);
#define lineAddProvider WINELIB_NAME_AW(lineAddProvider)
DWORD
WINAPI
lineAddToConference
(
HCALL
,
HCALL
);
DWORD
WINAPI
lineAnswer
(
HCALL
,
LPCSTR
,
DWORD
);
DWORD
WINAPI
lineBlindTransfer
(
HCALL
,
LPCSTR
,
DWORD
);
...
...
@@ -944,7 +946,6 @@ DWORD WINAPI lineUncompleteCall(HLINE,DWORD);
DWORD
WINAPI
lineUnHold
(
HCALL
);
DWORD
WINAPI
lineUnpark
(
HLINE
,
DWORD
,
LPHCALL
,
LPCSTR
);
DWORD
WINAPI
lineAddProviderA
(
LPCSTR
,
HWND
,
LPDWORD
);
DWORD
WINAPI
lineBlindTransferA
(
HCALL
,
LPCSTR
,
DWORD
);
DWORD
WINAPI
lineConfigDialogA
(
DWORD
,
HWND
,
LPCSTR
);
DWORD
WINAPI
lineConfigDialogEditA
(
DWORD
,
HWND
,
LPCSTR
,
LPVOID
const
,
DWORD
,
LPVARSTRING
);
...
...
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