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
c2951789
Commit
c2951789
authored
Oct 21, 2007
by
Louis Lenders
Committed by
Alexandre Julliard
Oct 22, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tapi32: Add stub for lineInitializeExA.
parent
a3ad394f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
0 deletions
+23
-0
line.c
dlls/tapi32/line.c
+10
-0
tapi32.spec
dlls/tapi32/tapi32.spec
+1
-0
tapi.h
include/tapi.h
+12
-0
No files found.
dlls/tapi32/line.c
View file @
c2951789
...
...
@@ -964,6 +964,16 @@ DWORD WINAPI lineInitialize(
}
/***********************************************************************
* lineInitializeExA (TAPI32.@)
*/
LONG
WINAPI
lineInitializeExA
(
LPHLINEAPP
lphLineApp
,
HINSTANCE
hInstance
,
LINECALLBACK
lpfnCallback
,
LPCSTR
lpszFriendlyAppName
,
LPDWORD
lpdwNumDevs
,
LPDWORD
lpdwAPIVersion
,
LPLINEINITIALIZEEXPARAMS
lpLineInitializeExParams
)
{
FIXME
(
"(%p, %p, %p, %s, %p, %p, %p): stub.
\n
"
,
lphLineApp
,
hInstance
,
lpfnCallback
,
debugstr_a
(
lpszFriendlyAppName
),
lpdwNumDevs
,
lpdwAPIVersion
,
lpLineInitializeExParams
);
return
0
;
}
/***********************************************************************
* lineMakeCall (TAPI32.@)
*/
DWORD
WINAPI
lineMakeCallA
(
HLINE
hLine
,
LPHCALL
lphCall
,
LPCSTR
lpszDestAddress
,
DWORD
dwCountryCode
,
LPLINECALLPARAMS
lpCallParams
)
...
...
dlls/tapi32/tapi32.spec
View file @
c2951789
...
...
@@ -63,6 +63,7 @@
@ stdcall lineHandoffA(long str long)
@ stdcall lineHold(long)
@ stdcall lineInitialize(ptr long ptr str ptr)
@ stdcall lineInitializeExA(ptr long ptr str ptr ptr ptr)
@ stdcall lineMakeCall(long ptr str long ptr) lineMakeCallA
@ stdcall lineMakeCallA(long ptr str long ptr)
@ stdcall lineMonitorDigits(long long)
...
...
include/tapi.h
View file @
c2951789
...
...
@@ -632,6 +632,18 @@ typedef struct linegeneratetone_tag {
DWORD
dwVolume
;
}
LINEGENERATETONE
,
*
LPLINEGENERATETONE
;
typedef
struct
lineinitializeexparams_tag
{
DWORD
dwTotalSize
;
DWORD
dwNeededSize
;
DWORD
dwUsedSize
;
DWORD
dwOptions
;
union
{
HANDLE
hEvent
;
HANDLE
hCompletionPort
;
}
Handles
;
DWORD
dwCompletionKey
;
}
LINEINITIALIZEEXPARAMS
,
*
LPLINEINITIALIZEEXPARAMS
;
typedef
struct
linemediacontrolcallstate_tag
{
DWORD
dwCallStates
;
DWORD
dwMediaControl
;
...
...
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