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
626a13fd
Commit
626a13fd
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 lineGetIDW.
parent
9ef447be
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
6 deletions
+22
-6
line.c
dlls/tapi32/line.c
+18
-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 @
626a13fd
...
...
@@ -497,12 +497,26 @@ DWORD WINAPI lineGetDevConfigA(DWORD dwDeviceID, LPVARSTRING lpDeviceConfig, LPC
}
/***********************************************************************
* lineGetID (TAPI32.@)
* lineGetID
W
(TAPI32.@)
*/
DWORD
WINAPI
lineGetIDA
(
HLINE
hLine
,
DWORD
dwAddressID
,
HCALL
hCall
,
DWORD
dwSelect
,
LPVARSTRING
lpDeviceID
,
LPCSTR
lpszDeviceClass
)
DWORD
WINAPI
lineGetIDW
(
HLINE
hLine
,
DWORD
dwAddressID
,
HCALL
hCall
,
DWORD
dwSelect
,
LPVARSTRING
lpDeviceID
,
LPCWSTR
lpszDeviceClass
)
{
FIXME
(
"(%p, %08x, %p, %08x, %p, %s): stub.
\n
"
,
hLine
,
dwAddressID
,
hCall
,
dwSelect
,
lpDeviceID
,
lpszDeviceClass
);
return
0
;
FIXME
(
"(%p, %08x, %p, %08x, %p, %s): stub.
\n
"
,
hLine
,
dwAddressID
,
hCall
,
dwSelect
,
lpDeviceID
,
debugstr_w
(
lpszDeviceClass
));
return
LINEERR_OPERATIONFAILED
;
}
/***********************************************************************
* lineGetIDA (TAPI32.@)
*/
DWORD
WINAPI
lineGetIDA
(
HLINE
hLine
,
DWORD
dwAddressID
,
HCALL
hCall
,
DWORD
dwSelect
,
LPVARSTRING
lpDeviceID
,
LPCSTR
lpszDeviceClass
)
{
FIXME
(
"(%p, %08x, %p, %08x, %p, %s): stub.
\n
"
,
hLine
,
dwAddressID
,
hCall
,
dwSelect
,
lpDeviceID
,
lpszDeviceClass
);
return
LINEERR_OPERATIONFAILED
;
}
/***********************************************************************
...
...
dlls/tapi32/tapi32.spec
View file @
626a13fd
...
...
@@ -48,6 +48,7 @@
@ stdcall lineGetDevConfigA(long ptr str)
@ stdcall lineGetID(long long long long ptr str) lineGetIDA
@ stdcall lineGetIDA(long long long long ptr str)
@ stdcall lineGetIDW(long long long long ptr wstr)
@ stdcall lineGetIcon(long str ptr) lineGetIconA
@ stdcall lineGetIconA(long str ptr)
@ stdcall lineGetLineDevStatus(long ptr) lineGetLineDevStatusA
...
...
include/tapi.h
View file @
626a13fd
...
...
@@ -892,7 +892,9 @@ 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
lineGetIDA
(
HLINE
,
DWORD
,
HCALL
,
DWORD
,
LPVARSTRING
,
LPCSTR
);
DWORD
WINAPI
lineGetIDW
(
HLINE
,
DWORD
,
HCALL
,
DWORD
,
LPVARSTRING
,
LPCWSTR
);
#define lineGetID WINELIB_NAME_AW(lineGetID);
DWORD
WINAPI
lineGetIcon
(
DWORD
,
LPCSTR
,
HICON
*
);
DWORD
WINAPI
lineGetLineDevStatus
(
HLINE
,
LPLINEDEVSTATUS
);
DWORD
WINAPI
lineGetNewCalls
(
HLINE
,
DWORD
,
DWORD
,
LPLINECALLLIST
);
...
...
@@ -964,7 +966,6 @@ DWORD WINAPI lineGetAppPriorityA(LPCSTR,DWORD,LPLINEEXTENSIONID const,DWORD,LPVA
DWORD
WINAPI
lineGetCallInfoA
(
HCALL
,
LPLINECALLINFO
);
DWORD
WINAPI
lineGetCountryA
(
DWORD
,
DWORD
,
LPLINECOUNTRYLIST
);
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
lineGetRequestA
(
HLINEAPP
,
DWORD
,
LPVOID
);
...
...
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