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
4b57bd59
Commit
4b57bd59
authored
Nov 07, 2006
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dplayx: Fix spelling of the DPLAYX_AcquireSemaphore() macro.
parent
580290fd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
dplayx_global.c
dlls/dplayx/dplayx_global.c
+14
-14
No files found.
dlls/dplayx/dplayx_global.c
View file @
4b57bd59
...
...
@@ -60,7 +60,7 @@ static HANDLE hDplayxSharedMem;
static
LPVOID
lpSharedStaticData
=
NULL
;
#define DPLAYX_A
quireSemaphore()
TRACE( "Waiting for DPLAYX semaphore\n" ); \
#define DPLAYX_A
cquireSemaphore()
TRACE( "Waiting for DPLAYX semaphore\n" ); \
WaitForSingleObject( hDplayxSema, INFINITE );\
TRACE( "Through wait\n" )
...
...
@@ -242,7 +242,7 @@ BOOL DPLAYX_ConstructData(void)
else
if
(
GetLastError
()
==
ERROR_ALREADY_EXISTS
)
{
TRACE
(
"Found semaphore handle %p
\n
"
,
hDplayxSema
);
DPLAYX_AquireSemaphore
();
DPLAYX_A
c
quireSemaphore
();
}
else
{
...
...
@@ -401,7 +401,7 @@ void DPLAYX_InitializeLobbyDataEntry( LPDPLAYX_LOBBYDATA lpData )
ZeroMemory
(
lpData
,
sizeof
(
*
lpData
)
);
}
/* NOTE: This must be called with the semaphore aquired.
/* NOTE: This must be called with the semaphore a
c
quired.
* TRUE/FALSE with a pointer to it's data returned. Pointer data is
* is only valid if TRUE is returned.
*/
...
...
@@ -442,7 +442,7 @@ BOOL DPLAYX_CreateLobbyApplication( DWORD dwAppID )
return
FALSE
;
}
DPLAYX_AquireSemaphore
();
DPLAYX_A
c
quireSemaphore
();
/* Find an empty space in the list and insert the data */
for
(
i
=
0
;
i
<
numSupportedLobbies
;
i
++
)
...
...
@@ -477,7 +477,7 @@ BOOL DPLAYX_DestroyLobbyApplication( DWORD dwAppID )
{
UINT
i
;
DPLAYX_AquireSemaphore
();
DPLAYX_A
c
quireSemaphore
();
/* Find an empty space in the list and insert the data */
for
(
i
=
0
;
i
<
numSupportedLobbies
;
i
++
)
...
...
@@ -510,7 +510,7 @@ BOOL DPLAYX_SetLobbyHandles( DWORD dwAppID,
return
FALSE
;
}
DPLAYX_AquireSemaphore
();
DPLAYX_A
c
quireSemaphore
();
if
(
!
DPLAYX_IsAppIdLobbied
(
dwAppID
,
&
lpLData
)
)
{
...
...
@@ -534,7 +534,7 @@ BOOL DPLAYX_GetThisLobbyHandles( LPHANDLE lphStart,
{
LPDPLAYX_LOBBYDATA
lpLData
;
DPLAYX_AquireSemaphore
();
DPLAYX_A
c
quireSemaphore
();
if
(
!
DPLAYX_IsAppIdLobbied
(
0
,
&
lpLData
)
)
{
...
...
@@ -608,7 +608,7 @@ HRESULT DPLAYX_GetConnectionSettingsA
DWORD
dwRequiredDataSize
=
0
;
HANDLE
hInformOnSettingRead
;
DPLAYX_AquireSemaphore
();
DPLAYX_A
c
quireSemaphore
();
if
(
!
DPLAYX_IsAppIdLobbied
(
dwAppID
,
&
lpDplData
)
)
{
...
...
@@ -732,7 +732,7 @@ HRESULT DPLAYX_GetConnectionSettingsW
DWORD
dwRequiredDataSize
=
0
;
HANDLE
hInformOnSettingRead
;
DPLAYX_AquireSemaphore
();
DPLAYX_A
c
quireSemaphore
();
if
(
!
DPLAYX_IsAppIdLobbied
(
dwAppID
,
&
lpDplData
)
)
{
...
...
@@ -872,7 +872,7 @@ HRESULT DPLAYX_SetConnectionSettingsA
return
DPERR_INVALIDPARAMS
;
}
DPLAYX_AquireSemaphore
();
DPLAYX_A
c
quireSemaphore
();
if
(
!
DPLAYX_IsAppIdLobbied
(
dwAppID
,
&
lpDplData
)
)
{
...
...
@@ -934,7 +934,7 @@ HRESULT DPLAYX_SetConnectionSettingsW
return
DPERR_INVALIDPARAMS
;
}
DPLAYX_AquireSemaphore
();
DPLAYX_A
c
quireSemaphore
();
if
(
!
DPLAYX_IsAppIdLobbied
(
dwAppID
,
&
lpDplData
)
)
{
...
...
@@ -1145,7 +1145,7 @@ BOOL DPLAYX_WaitForConnectionSettings( BOOL bWait )
{
LPDPLAYX_LOBBYDATA
lpLobbyData
;
DPLAYX_AquireSemaphore
();
DPLAYX_A
c
quireSemaphore
();
if
(
!
DPLAYX_IsAppIdLobbied
(
0
,
&
lpLobbyData
)
)
{
...
...
@@ -1165,7 +1165,7 @@ BOOL DPLAYX_AnyLobbiesWaitingForConnSettings(void)
UINT
i
;
BOOL
bFound
=
FALSE
;
DPLAYX_AquireSemaphore
();
DPLAYX_A
c
quireSemaphore
();
for
(
i
=
0
;
i
<
numSupportedLobbies
;
i
++
)
{
...
...
@@ -1187,7 +1187,7 @@ BOOL DPLAYX_SetLobbyMsgThreadId( DWORD dwAppId, DWORD dwThreadId )
{
LPDPLAYX_LOBBYDATA
lpLobbyData
;
DPLAYX_AquireSemaphore
();
DPLAYX_A
c
quireSemaphore
();
if
(
!
DPLAYX_IsAppIdLobbied
(
dwAppId
,
&
lpLobbyData
)
)
{
...
...
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