dplayx: Use a proper plural for the repliesExpected field name.
This commit is contained in:
parent
a6dbc28bfe
commit
2539004fe1
|
@ -278,7 +278,7 @@ static BOOL DP_CreateDirectPlay2( LPVOID lpDP )
|
|||
|
||||
DPQ_INIT(This->dp2->receiveMsgs);
|
||||
DPQ_INIT(This->dp2->sendMsgs);
|
||||
DPQ_INIT(This->dp2->replysExpected);
|
||||
DPQ_INIT(This->dp2->repliesExpected);
|
||||
|
||||
if( !NS_InitializeSessionCache( &This->dp2->lpNameServerData ) )
|
||||
{
|
||||
|
|
|
@ -67,7 +67,7 @@ typedef struct tagDP_MSG_REPLY_STRUCT
|
|||
|
||||
typedef struct tagDP_MSG_REPLY_STRUCT_LIST
|
||||
{
|
||||
DPQ_ENTRY(tagDP_MSG_REPLY_STRUCT_LIST) replysExpected;
|
||||
DPQ_ENTRY(tagDP_MSG_REPLY_STRUCT_LIST) repliesExpected;
|
||||
DP_MSG_REPLY_STRUCT replyExpected;
|
||||
} DP_MSG_REPLY_STRUCT_LIST, *LPDP_MSG_REPLY_STRUCT_LIST;
|
||||
|
||||
|
@ -193,7 +193,7 @@ typedef struct tagDirectPlay2Data
|
|||
enum SPSTATE connectionInitialized;
|
||||
|
||||
/* Expected messages queue */
|
||||
DPQ_HEAD( tagDP_MSG_REPLY_STRUCT_LIST ) replysExpected;
|
||||
DPQ_HEAD( tagDP_MSG_REPLY_STRUCT_LIST ) repliesExpected;
|
||||
} DirectPlay2Data;
|
||||
|
||||
typedef struct tagDirectPlay3Data
|
||||
|
|
|
@ -172,7 +172,7 @@ HANDLE DP_MSG_BuildAndLinkReplyStruct( IDirectPlay2Impl* This,
|
|||
|
||||
/* Insert into the message queue while locked */
|
||||
EnterCriticalSection( &This->unk->DP_lock );
|
||||
DPQ_INSERT( This->dp2->replysExpected, lpReplyStructList, replysExpected );
|
||||
DPQ_INSERT( This->dp2->repliesExpected, lpReplyStructList, repliesExpected );
|
||||
LeaveCriticalSection( &This->unk->DP_lock );
|
||||
|
||||
return lpReplyStructList->replyExpected.hReceipt;
|
||||
|
@ -433,7 +433,7 @@ void DP_MSG_ReplyReceived( IDirectPlay2AImpl* This, WORD wCommandId,
|
|||
* avoid problems.
|
||||
*/
|
||||
EnterCriticalSection( &This->unk->DP_lock );
|
||||
DPQ_REMOVE_ENTRY( This->dp2->replysExpected, replysExpected, replyExpected.wExpectedReply,
|
||||
DPQ_REMOVE_ENTRY( This->dp2->repliesExpected, repliesExpected, replyExpected.wExpectedReply,
|
||||
==, wCommandId, lpReplyList );
|
||||
LeaveCriticalSection( &This->unk->DP_lock );
|
||||
|
||||
|
|
Loading…
Reference in New Issue