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
75572fdb
Commit
75572fdb
authored
Feb 04, 2009
by
Andrew Talbot
Committed by
Alexandre Julliard
Feb 05, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dplayx: Remove unused functions.
parent
c744710b
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
35 deletions
+0
-35
dplayx_global.c
dlls/dplayx/dplayx_global.c
+0
-27
name_server.c
dlls/dplayx/name_server.c
+0
-7
name_server.h
dlls/dplayx/name_server.h
+0
-1
No files found.
dlls/dplayx/dplayx_global.c
View file @
75572fdb
...
...
@@ -450,33 +450,6 @@ BOOL DPLAYX_CreateLobbyApplication( DWORD dwAppID )
return
FALSE
;
}
/* I'm not sure when I'm going to need this, but here it is */
BOOL
DPLAYX_DestroyLobbyApplication
(
DWORD
dwAppID
)
{
UINT
i
;
DPLAYX_AcquireSemaphore
();
/* Find an empty space in the list and insert the data */
for
(
i
=
0
;
i
<
numSupportedLobbies
;
i
++
)
{
if
(
lobbyData
[
i
].
dwAppID
==
dwAppID
)
{
/* FIXME: Should free up anything unused. Tisk tisk :0 */
/* Mark this entry unused */
TRACE
(
"Marking lobbyData[%u] unused
\n
"
,
i
);
DPLAYX_InitializeLobbyDataEntry
(
&
lobbyData
[
i
]
);
DPLAYX_ReleaseSemaphore
();
return
TRUE
;
}
}
DPLAYX_ReleaseSemaphore
();
ERR
(
"Unable to find global entry for application
\n
"
);
return
FALSE
;
}
BOOL
DPLAYX_SetLobbyHandles
(
DWORD
dwAppID
,
HANDLE
hStart
,
HANDLE
hDeath
,
HANDLE
hConnRead
)
{
...
...
dlls/dplayx/name_server.c
View file @
75572fdb
...
...
@@ -83,13 +83,6 @@ void NS_SetLocalComputerAsNameServer( LPCDPSESSIONDESC2 lpsd, LPVOID lpNSInfo )
lpCache
->
bNsIsLocal
=
TRUE
;
}
void
NS_SetRemoteComputerAsNameServer
(
LPCDPSESSIONDESC2
lpsd
,
LPVOID
lpNSInfo
)
{
lpNSCache
lpCache
=
(
lpNSCache
)
lpNSInfo
;
lpCache
->
bNsIsLocal
=
FALSE
;
}
static
DPQ_DECL_COMPARECB
(
cbUglyPig
,
GUID
)
{
return
IsEqualGUID
(
elem1
,
elem2
);
...
...
dlls/dplayx/name_server.h
View file @
75572fdb
...
...
@@ -29,7 +29,6 @@
#include "dplay_global.h"
void
NS_SetLocalComputerAsNameServer
(
LPCDPSESSIONDESC2
lpsd
,
LPVOID
lpNSInfo
);
void
NS_SetRemoteComputerAsNameServer
(
LPCDPSESSIONDESC2
lpsd
,
LPVOID
lpNSInfo
);
void
NS_AddRemoteComputerAsNameServer
(
LPCVOID
lpNSAddrHdr
,
DWORD
dwHdrSize
,
LPCDPMSG_ENUMSESSIONSREPLY
lpcMsg
,
...
...
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