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
141067fc
Commit
141067fc
authored
Oct 01, 2010
by
Louis Lenders
Committed by
Alexandre Julliard
Oct 01, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tapi32: Quiet a few noisy fixme's.
parent
49fa9de5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
line.c
dlls/tapi32/line.c
+13
-4
No files found.
dlls/tapi32/line.c
View file @
141067fc
...
...
@@ -471,7 +471,10 @@ DWORD WINAPI lineGetCountryA(DWORD dwCountryID, DWORD dwAPIVersion, LPLINECOUNTR
DWORD
WINAPI
lineGetDevCapsW
(
HLINEAPP
hLineApp
,
DWORD
dwDeviceID
,
DWORD
dwAPIVersion
,
DWORD
dwExtVersion
,
LPLINEDEVCAPS
lpLineDevCaps
)
{
FIXME
(
"(%p, %08x, %08x, %08x, %p): stub.
\n
"
,
hLineApp
,
dwDeviceID
,
dwAPIVersion
,
static
int
warn_once
;
if
(
!
warn_once
++
)
FIXME
(
"(%p, %08x, %08x, %08x, %p): stub.
\n
"
,
hLineApp
,
dwDeviceID
,
dwAPIVersion
,
dwExtVersion
,
lpLineDevCaps
);
return
LINEERR_OPERATIONFAILED
;
}
...
...
@@ -482,7 +485,10 @@ DWORD WINAPI lineGetDevCapsW(HLINEAPP hLineApp, DWORD dwDeviceID, DWORD dwAPIVer
DWORD
WINAPI
lineGetDevCapsA
(
HLINEAPP
hLineApp
,
DWORD
dwDeviceID
,
DWORD
dwAPIVersion
,
DWORD
dwExtVersion
,
LPLINEDEVCAPS
lpLineDevCaps
)
{
FIXME
(
"(%p, %08x, %08x, %08x, %p): stub.
\n
"
,
hLineApp
,
dwDeviceID
,
dwAPIVersion
,
static
int
warn_once
;
if
(
!
warn_once
++
)
FIXME
(
"(%p, %08x, %08x, %08x, %p): stub.
\n
"
,
hLineApp
,
dwDeviceID
,
dwAPIVersion
,
dwExtVersion
,
lpLineDevCaps
);
return
LINEERR_OPERATIONFAILED
;
}
...
...
@@ -1079,8 +1085,11 @@ DWORD WINAPI lineNegotiateAPIVersion(
LPLINEEXTENSIONID
lpExtensionID
)
{
FIXME
(
"(%p, %d, %d, %d, %p, %p): stub.
\n
"
,
hLineApp
,
dwDeviceID
,
dwAPILowVersion
,
dwAPIHighVersion
,
lpdwAPIVersion
,
lpExtensionID
);
static
int
warn_once
;
if
(
!
warn_once
++
)
FIXME
(
"(%p, %d, %d, %d, %p, %p): stub.
\n
"
,
hLineApp
,
dwDeviceID
,
dwAPILowVersion
,
dwAPIHighVersion
,
lpdwAPIVersion
,
lpExtensionID
);
*
lpdwAPIVersion
=
dwAPIHighVersion
;
return
0
;
}
...
...
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