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
9811129d
Commit
9811129d
authored
Nov 25, 2000
by
Ove Kaaven
Committed by
Alexandre Julliard
Nov 25, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented SendNotifyMessage().
parent
8724ea85
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
40 deletions
+27
-40
message.c
windows/message.c
+27
-40
No files found.
windows/message.c
View file @
9811129d
...
@@ -802,7 +802,7 @@ static LRESULT MSG_SendMessageInterThread( HQUEUE16 hDestQueue,
...
@@ -802,7 +802,7 @@ static LRESULT MSG_SendMessageInterThread( HQUEUE16 hDestQueue,
LRESULT
retVal
=
1
;
LRESULT
retVal
=
1
;
int
iWndsLocks
;
int
iWndsLocks
;
*
pRes
=
0
;
if
(
pRes
)
*
pRes
=
0
;
if
(
IsTaskLocked16
()
||
!
IsWindow
(
hwnd
))
if
(
IsTaskLocked16
()
||
!
IsWindow
(
hwnd
))
return
0
;
return
0
;
...
@@ -828,12 +828,17 @@ static LRESULT MSG_SendMessageInterThread( HQUEUE16 hDestQueue,
...
@@ -828,12 +828,17 @@ static LRESULT MSG_SendMessageInterThread( HQUEUE16 hDestQueue,
smsg
->
lParam
=
lParam
;
smsg
->
lParam
=
lParam
;
smsg
->
lResult
=
0
;
smsg
->
lResult
=
0
;
smsg
->
hSrcQueue
=
GetFastQueue16
()
;
smsg
->
hSrcQueue
=
pRes
?
GetFastQueue16
()
:
0
;
smsg
->
hDstQueue
=
hDestQueue
;
smsg
->
hDstQueue
=
hDestQueue
;
smsg
->
flags
=
flags
;
smsg
->
flags
=
flags
;
if
(
pRes
)
{
/* add smsg struct in the processing SM list of the source queue */
/* add smsg struct in the processing SM list of the source queue */
QUEUE_AddSMSG
(
queue
,
SM_PROCESSING_LIST
,
smsg
);
QUEUE_AddSMSG
(
queue
,
SM_PROCESSING_LIST
,
smsg
);
}
else
{
/* this is a notification message, we don't need a reply */
smsg
->
flags
|=
SMSG_ALREADY_REPLIED
|
SMSG_RECEIVER_CLEANS
;
}
/* add smsg struct in the pending list of the destination queue */
/* add smsg struct in the pending list of the destination queue */
if
(
QUEUE_AddSMSG
(
destQ
,
SM_PENDING_LIST
,
smsg
)
==
FALSE
)
if
(
QUEUE_AddSMSG
(
destQ
,
SM_PENDING_LIST
,
smsg
)
==
FALSE
)
...
@@ -842,6 +847,8 @@ static LRESULT MSG_SendMessageInterThread( HQUEUE16 hDestQueue,
...
@@ -842,6 +847,8 @@ static LRESULT MSG_SendMessageInterThread( HQUEUE16 hDestQueue,
goto
CLEANUP
;
goto
CLEANUP
;
}
}
if
(
!
pRes
)
goto
CLEANUP
;
/* don't need a reply */
iWndsLocks
=
WIN_SuspendWndsLock
();
iWndsLocks
=
WIN_SuspendWndsLock
();
/* force destination task to run next, if 16 bit threads */
/* force destination task to run next, if 16 bit threads */
...
@@ -942,7 +949,8 @@ BOOL WINAPI ReplyMessage( LRESULT result )
...
@@ -942,7 +949,8 @@ BOOL WINAPI ReplyMessage( LRESULT result )
if
(
!
(
smsg
=
queue
->
smWaiting
)
if
(
!
(
smsg
=
queue
->
smWaiting
)
||
!
(
senderQ
=
QUEUE_Lock
(
smsg
->
hSrcQueue
))
)
||
!
(
(
senderQ
=
QUEUE_Lock
(
smsg
->
hSrcQueue
))
||
(
smsg
->
flags
&
SMSG_ALREADY_REPLIED
))
)
goto
ReplyMessageEnd
;
goto
ReplyMessageEnd
;
if
(
!
(
smsg
->
flags
&
SMSG_ALREADY_REPLIED
)
)
if
(
!
(
smsg
->
flags
&
SMSG_ALREADY_REPLIED
)
)
...
@@ -1711,11 +1719,11 @@ static LRESULT MSG_SendMessage( HWND hwnd, UINT msg, WPARAM wParam,
...
@@ -1711,11 +1719,11 @@ static LRESULT MSG_SendMessage( HWND hwnd, UINT msg, WPARAM wParam,
WND
**
list
,
**
ppWnd
;
WND
**
list
,
**
ppWnd
;
LRESULT
ret
=
1
;
LRESULT
ret
=
1
;
*
pRes
=
0
;
if
(
pRes
)
*
pRes
=
0
;
if
(
hwnd
==
HWND_BROADCAST
||
hwnd
==
HWND_TOPMOST
)
if
(
hwnd
==
HWND_BROADCAST
||
hwnd
==
HWND_TOPMOST
)
{
{
*
pRes
=
1
;
if
(
pRes
)
*
pRes
=
1
;
if
(
!
(
list
=
WIN_BuildWinArray
(
WIN_GetDesktop
(),
0
,
NULL
)))
if
(
!
(
list
=
WIN_BuildWinArray
(
WIN_GetDesktop
(),
0
,
NULL
)))
{
{
...
@@ -1790,23 +1798,26 @@ static LRESULT MSG_SendMessage( HWND hwnd, UINT msg, WPARAM wParam,
...
@@ -1790,23 +1798,26 @@ static LRESULT MSG_SendMessage( HWND hwnd, UINT msg, WPARAM wParam,
wParam
,
lParam
,
timeout
,
flags
,
pRes
);
wParam
,
lParam
,
timeout
,
flags
,
pRes
);
else
else
{
{
LRESULT
res
;
/* Call the right CallWindowProc flavor */
/* Call the right CallWindowProc flavor */
if
(
flags
&
SMSG_UNICODE
)
if
(
flags
&
SMSG_UNICODE
)
*
pR
es
=
CallWindowProcW
(
(
WNDPROC
)
wndPtr
->
winproc
,
r
es
=
CallWindowProcW
(
(
WNDPROC
)
wndPtr
->
winproc
,
hwnd
,
msg
,
wParam
,
lParam
);
hwnd
,
msg
,
wParam
,
lParam
);
else
if
(
flags
&
SMSG_WIN32
)
else
if
(
flags
&
SMSG_WIN32
)
*
pR
es
=
CallWindowProcA
(
(
WNDPROC
)
wndPtr
->
winproc
,
r
es
=
CallWindowProcA
(
(
WNDPROC
)
wndPtr
->
winproc
,
hwnd
,
msg
,
wParam
,
lParam
);
hwnd
,
msg
,
wParam
,
lParam
);
else
else
*
pR
es
=
CallWindowProc16
(
(
WNDPROC16
)
wndPtr
->
winproc
,
r
es
=
CallWindowProc16
(
(
WNDPROC16
)
wndPtr
->
winproc
,
(
HWND16
)
hwnd
,
(
UINT16
)
msg
,
(
HWND16
)
hwnd
,
(
UINT16
)
msg
,
(
WPARAM16
)
wParam
,
lParam
);
(
WPARAM16
)
wParam
,
lParam
);
if
(
pRes
)
*
pRes
=
res
;
}
}
if
(
flags
&
SMSG_WIN32
)
if
(
flags
&
SMSG_WIN32
)
SPY_ExitMessage
(
SPY_RESULT_OK
,
hwnd
,
msg
,
*
pRes
,
wParam
,
lParam
);
SPY_ExitMessage
(
SPY_RESULT_OK
,
hwnd
,
msg
,
pRes
?*
pRes
:
0
,
wParam
,
lParam
);
else
else
SPY_ExitMessage
(
SPY_RESULT_OK16
,
hwnd
,
msg
,
*
pRes
,
wParam
,
lParam
);
SPY_ExitMessage
(
SPY_RESULT_OK16
,
hwnd
,
msg
,
pRes
?*
pRes
:
0
,
wParam
,
lParam
);
END:
END:
WIN_ReleaseWndPtr
(
wndPtr
);
WIN_ReleaseWndPtr
(
wndPtr
);
return
ret
;
return
ret
;
...
@@ -2570,44 +2581,20 @@ LONG WINAPI BroadcastSystemMessage(
...
@@ -2570,44 +2581,20 @@ LONG WINAPI BroadcastSystemMessage(
/***********************************************************************
/***********************************************************************
* SendNotifyMessageA (USER32.460)
* SendNotifyMessageA (USER32.460)
* FIXME
* The message sended with PostMessage has to be put in the queue
* with a higher priority as the other "Posted" messages.
* QUEUE_AddMsg has to be modifyed.
*/
*/
BOOL
WINAPI
SendNotifyMessageA
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
)
BOOL
WINAPI
SendNotifyMessageA
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
BOOL
ret
=
TRUE
;
{
FIXME
(
"(%04x,%08x,%08x,%08lx) not complete
\n
"
,
return
MSG_SendMessage
(
hwnd
,
msg
,
wParam
,
lParam
,
INFINITE
,
hwnd
,
msg
,
wParam
,
lParam
);
SMSG_WIN32
,
NULL
);
if
(
GetCurrentThreadId
()
==
GetWindowThreadProcessId
(
hwnd
,
NULL
))
{
ret
=
SendMessageA
(
hwnd
,
msg
,
wParam
,
lParam
);
}
else
{
PostMessageA
(
hwnd
,
msg
,
wParam
,
lParam
);
}
return
ret
;
}
}
/***********************************************************************
/***********************************************************************
* SendNotifyMessageW (USER32.461)
* SendNotifyMessageW (USER32.461)
* FIXME
* The message sended with PostMessage has to be put in the queue
* with a higher priority as the other "Posted" messages.
* QUEUE_AddMsg has to be modifyed.
*/
*/
BOOL
WINAPI
SendNotifyMessageW
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
)
BOOL
WINAPI
SendNotifyMessageW
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
BOOL
ret
=
TRUE
;
{
FIXME
(
"(%04x,%08x,%08x,%08lx) not complete
\n
"
,
return
MSG_SendMessage
(
hwnd
,
msg
,
wParam
,
lParam
,
INFINITE
,
hwnd
,
msg
,
wParam
,
lParam
);
SMSG_WIN32
|
SMSG_UNICODE
,
NULL
);
if
(
GetCurrentThreadId
()
==
GetWindowThreadProcessId
(
hwnd
,
NULL
))
{
ret
=
SendMessageW
(
hwnd
,
msg
,
wParam
,
lParam
);
}
else
{
PostMessageW
(
hwnd
,
msg
,
wParam
,
lParam
);
}
return
ret
;
}
}
/***********************************************************************
/***********************************************************************
...
...
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