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
af38006a
Commit
af38006a
authored
Mar 23, 2009
by
Andrew Nguyen
Committed by
Alexandre Julliard
Mar 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tapi32: Stub lineGetDevCapsW.
parent
665a0424
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
6 deletions
+21
-6
line.c
dlls/tapi32/line.c
+17
-4
tapi32.spec
dlls/tapi32/tapi32.spec
+1
-0
tapi.h
include/tapi.h
+3
-2
No files found.
dlls/tapi32/line.c
View file @
af38006a
...
...
@@ -466,12 +466,25 @@ DWORD WINAPI lineGetCountryA(DWORD dwCountryID, DWORD dwAPIVersion, LPLINECOUNTR
}
/***********************************************************************
* lineGetDevCaps (TAPI32.@)
* lineGetDevCaps
W
(TAPI32.@)
*/
DWORD
WINAPI
lineGetDevCapsA
(
HLINEAPP
hLineApp
,
DWORD
dwDeviceID
,
DWORD
dwAPIVersion
,
DWORD
dwExtVersion
,
LPLINEDEVCAPS
lpLineDevCaps
)
DWORD
WINAPI
lineGetDevCapsW
(
HLINEAPP
hLineApp
,
DWORD
dwDeviceID
,
DWORD
dwAPIVersion
,
DWORD
dwExtVersion
,
LPLINEDEVCAPS
lpLineDevCaps
)
{
FIXME
(
"(%p, %08x, %08x, %08x, %p): stub.
\n
"
,
hLineApp
,
dwDeviceID
,
dwAPIVersion
,
dwExtVersion
,
lpLineDevCaps
);
return
0
;
FIXME
(
"(%p, %08x, %08x, %08x, %p): stub.
\n
"
,
hLineApp
,
dwDeviceID
,
dwAPIVersion
,
dwExtVersion
,
lpLineDevCaps
);
return
LINEERR_OPERATIONFAILED
;
}
/***********************************************************************
* lineGetDevCapsA (TAPI32.@)
*/
DWORD
WINAPI
lineGetDevCapsA
(
HLINEAPP
hLineApp
,
DWORD
dwDeviceID
,
DWORD
dwAPIVersion
,
DWORD
dwExtVersion
,
LPLINEDEVCAPS
lpLineDevCaps
)
{
FIXME
(
"(%p, %08x, %08x, %08x, %p): stub.
\n
"
,
hLineApp
,
dwDeviceID
,
dwAPIVersion
,
dwExtVersion
,
lpLineDevCaps
);
return
LINEERR_OPERATIONFAILED
;
}
/***********************************************************************
...
...
dlls/tapi32/tapi32.spec
View file @
af38006a
...
...
@@ -43,6 +43,7 @@
@ stdcall lineGetCountryA(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)
@ stdcall lineGetDevConfig(long ptr str) lineGetDevConfigA
@ stdcall lineGetDevConfigA(long ptr str)
@ stdcall lineGetID(long long long long ptr str) lineGetIDA
...
...
include/tapi.h
View file @
af38006a
...
...
@@ -888,7 +888,9 @@ DWORD WINAPI lineGetCallInfo(HCALL,LPLINECALLINFO);
DWORD
WINAPI
lineGetCallStatus
(
HCALL
,
LPLINECALLSTATUS
);
DWORD
WINAPI
lineGetConfRelatedCalls
(
HCALL
,
LPLINECALLLIST
);
DWORD
WINAPI
lineGetCountry
(
DWORD
,
DWORD
,
LPLINECOUNTRYLIST
);
DWORD
WINAPI
lineGetDevCaps
(
HLINEAPP
,
DWORD
,
DWORD
,
DWORD
,
LPLINEDEVCAPS
);
DWORD
WINAPI
lineGetDevCapsA
(
HLINEAPP
,
DWORD
,
DWORD
,
DWORD
,
LPLINEDEVCAPS
);
DWORD
WINAPI
lineGetDevCapsW
(
HLINEAPP
,
DWORD
,
DWORD
,
DWORD
,
LPLINEDEVCAPS
);
#define lineGetDevCaps WINELIB_NAME_AW(lineGetDevCaps);
DWORD
WINAPI
lineGetDevConfig
(
DWORD
,
LPVARSTRING
,
LPCSTR
);
DWORD
WINAPI
lineGetID
(
HLINE
,
DWORD
,
HCALL
,
DWORD
,
LPVARSTRING
,
LPCSTR
);
DWORD
WINAPI
lineGetIcon
(
DWORD
,
LPCSTR
,
HICON
*
);
...
...
@@ -959,7 +961,6 @@ DWORD WINAPI lineGetAddressStatusA(HLINE,DWORD,LPLINEADDRESSSTATUS);
DWORD
WINAPI
lineGetAppPriorityA
(
LPCSTR
,
DWORD
,
LPLINEEXTENSIONID
const
,
DWORD
,
LPVARSTRING
,
LPDWORD
);
DWORD
WINAPI
lineGetCallInfoA
(
HCALL
,
LPLINECALLINFO
);
DWORD
WINAPI
lineGetCountryA
(
DWORD
,
DWORD
,
LPLINECOUNTRYLIST
);
DWORD
WINAPI
lineGetDevCapsA
(
HLINEAPP
,
DWORD
,
DWORD
,
DWORD
,
LPLINEDEVCAPS
);
DWORD
WINAPI
lineGetDevConfigA
(
DWORD
,
LPVARSTRING
,
LPCSTR
);
DWORD
WINAPI
lineGetIDA
(
HLINE
,
DWORD
,
HCALL
,
DWORD
,
LPVARSTRING
,
LPCSTR
);
DWORD
WINAPI
lineGetIconA
(
DWORD
,
LPCSTR
,
HICON
*
);
...
...
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