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
56212ce2
Commit
56212ce2
authored
Sep 09, 2011
by
Louis Lenders
Committed by
Alexandre Julliard
Sep 09, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dpnet: Return success in IDirectPlay8PeerImpl_Initialize.
parent
905d6844
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
peer.c
dlls/dpnet/peer.c
+2
-2
peer.c
dlls/dpnet/tests/peer.c
+1
-1
No files found.
dlls/dpnet/peer.c
View file @
56212ce2
...
...
@@ -85,9 +85,9 @@ static ULONG WINAPI IDirectPlay8PeerImpl_Release(IDirectPlay8Peer *iface)
static
HRESULT
WINAPI
IDirectPlay8PeerImpl_Initialize
(
IDirectPlay8Peer
*
iface
,
void
*
const
pvUserContext
,
const
PFNDPNMESSAGEHANDLER
pfn
,
const
DWORD
dwFlags
)
{
FIXM
E
(
"(%p)->(%p,%p,%x): stub
\n
"
,
iface
,
pvUserContext
,
pfn
,
dwFlags
);
TRAC
E
(
"(%p)->(%p,%p,%x): stub
\n
"
,
iface
,
pvUserContext
,
pfn
,
dwFlags
);
return
DPN
ERR_GENERIC
;
return
DPN
_OK
;
}
static
HRESULT
WINAPI
IDirectPlay8PeerImpl_EnumServiceProviders
(
IDirectPlay8Peer
*
iface
,
...
...
dlls/dpnet/tests/peer.c
View file @
56212ce2
...
...
@@ -52,7 +52,7 @@ static void test_init_dp(void)
ok
(
hr
==
S_OK
,
"CoCreateInstance failed with 0x%x
\n
"
,
hr
);
hr
=
IDirectPlay8Peer_Initialize
(
peer
,
NULL
,
DirectPlayMessageHandler
,
0
);
todo_wine
ok
(
hr
==
S_OK
,
"IDirectPlay8Peer_Initialize failed with %x
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"IDirectPlay8Peer_Initialize failed with %x
\n
"
,
hr
);
}
static
void
test_enum_service_providers
(
void
)
...
...
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