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
f5fc2ca4
Commit
f5fc2ca4
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 lineGetProviderListW.
parent
2c6e611c
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 @
f5fc2ca4
...
...
@@ -520,12 +520,21 @@ DWORD WINAPI lineGetNumRings(HLINE hLine, DWORD dwAddressID, LPDWORD lpdwNumRing
}
/***********************************************************************
* lineGetProviderList (TAPI32.@)
* lineGetProviderList
A
(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
;
}
/***********************************************************************
...
...
dlls/tapi32/tapi32.spec
View file @
f5fc2ca4
...
...
@@ -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)
...
...
include/tapi.h
View file @
f5fc2ca4
...
...
@@ -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
);
...
...
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