Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
260f1a1d
Commit
260f1a1d
authored
Sep 22, 2000
by
Andreas Mohr
Committed by
Alexandre Julliard
Sep 22, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Spelling, trace fixes.
parent
0af222ce
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
message.c
windows/message.c
+4
-4
nonclient.c
windows/nonclient.c
+1
-1
queue.c
windows/queue.c
+4
-4
No files found.
windows/message.c
View file @
260f1a1d
...
...
@@ -887,7 +887,7 @@ got:
}
WIN_RestoreWndsLock
(
iWndsLocks
);
/* remove the smsg from the processing
g
list of the source queue */
/* remove the smsg from the processing list of the source queue */
QUEUE_RemoveSMSG
(
queue
,
SM_PROCESSING_LIST
,
smsg
);
/* Note: the destination thread is in charge of removing the smsg from
...
...
@@ -897,7 +897,7 @@ got:
released the smsg structure if the receiver thread is done
(SMSG_RECEIVED set). If the receiver thread isn't done,
SMSG_RECEIVER_CLEANS_UP flag is set, and it will be the receiver
respons
ability to released
smsg */
respons
ibility to release
smsg */
EnterCriticalSection
(
&
queue
->
cSection
);
if
(
smsg
->
flags
&
SMSG_RECEIVED
)
...
...
@@ -977,7 +977,7 @@ BOOL WINAPI ReplyMessage( LRESULT result )
if
(
smsg
->
flags
&
SMSG_SENDING_REPLY
)
{
/* remove msg from the waiting list, since this
is the last
/* remove msg from the waiting list, since this is the last
ReplyMessage */
QUEUE_RemoveSMSG
(
queue
,
SM_WAITING_LIST
,
smsg
);
...
...
@@ -987,7 +987,7 @@ BOOL WINAPI ReplyMessage( LRESULT result )
smsg
->
flags
|=
SMSG_RECEIVED
;
/* sender will set SMSG_RECEIVER_CLEANS_UP if it wants the
receiver to clean up smsg, it could only happen
s
when there is
receiver to clean up smsg, it could only happen when there is
an early reply or a timeout */
if
(
smsg
->
flags
&
SMSG_RECEIVER_CLEANS
)
{
...
...
windows/nonclient.c
View file @
260f1a1d
...
...
@@ -667,7 +667,7 @@ END:
/***********************************************************************
* NC_DoNCHitTest
*
* Handle a WM_NCHITTEST message. Called from NC_HandleN
c
HitTest().
* Handle a WM_NCHITTEST message. Called from NC_HandleN
C
HitTest().
*/
static
LONG
NC_DoNCHitTest
(
WND
*
wndPtr
,
POINT16
pt
)
...
...
windows/queue.c
View file @
260f1a1d
...
...
@@ -835,7 +835,7 @@ SMSG *QUEUE_RemoveSMSG( MESSAGEQUEUE *queue, int list, SMSG *smsg )
should be always at the top of the list */
if
(
(
smsg
!=
queue
->
smProcessing
)
||
!
queue
->
smProcessing
)
{
ERR_
(
sendmsg
)(
"smsg not at the top of Processing list, smsg=0x%p queue=0x%p"
,
smsg
,
queue
);
ERR_
(
sendmsg
)(
"smsg not at the top of Processing list, smsg=0x%p queue=0x%p
\n
"
,
smsg
,
queue
);
return
0
;
}
else
...
...
@@ -859,7 +859,7 @@ SMSG *QUEUE_RemoveSMSG( MESSAGEQUEUE *queue, int list, SMSG *smsg )
should be always at the top of the list */
if
(
(
smsg
!=
queue
->
smWaiting
)
||
!
queue
->
smWaiting
)
{
ERR_
(
sendmsg
)(
"smsg not at the top of Waiting list, smsg=0x%p queue=0x%p"
,
smsg
,
queue
);
ERR_
(
sendmsg
)(
"smsg not at the top of Waiting list, smsg=0x%p queue=0x%p
\n
"
,
smsg
,
queue
);
return
0
;
}
else
...
...
@@ -878,7 +878,7 @@ SMSG *QUEUE_RemoveSMSG( MESSAGEQUEUE *queue, int list, SMSG *smsg )
smsg
=
queue
->
smPending
;
if
(
(
smsg
!=
queue
->
smPending
)
||
!
queue
->
smPending
)
{
ERR_
(
sendmsg
)(
"should always remove the top one in Pending list, smsg=0x%p queue=0x%p"
,
smsg
,
queue
);
ERR_
(
sendmsg
)(
"should always remove the top one in Pending list, smsg=0x%p queue=0x%p
\n
"
,
smsg
,
queue
);
LeaveCriticalSection
(
&
queue
->
cSection
);
return
0
;
}
...
...
@@ -897,7 +897,7 @@ SMSG *QUEUE_RemoveSMSG( MESSAGEQUEUE *queue, int list, SMSG *smsg )
return
smsg
;
default:
ERR_
(
sendmsg
)(
"Invalid list: %d"
,
list
);
ERR_
(
sendmsg
)(
"Invalid list: %d
\n
"
,
list
);
break
;
}
...
...
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