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
93c001b0
Commit
93c001b0
authored
Sep 21, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
Sep 21, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Fixed SHCNRF_NewDelivery flag support in SHChangeNotify.
parent
155fb983
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
28 deletions
+57
-28
changenotify.c
dlls/shell32/changenotify.c
+57
-28
No files found.
dlls/shell32/changenotify.c
View file @
93c001b0
...
@@ -51,9 +51,7 @@ typedef struct _NOTIFICATIONLIST
...
@@ -51,9 +51,7 @@ typedef struct _NOTIFICATIONLIST
LPNOTIFYREGISTER
apidl
;
/* array of entries to watch*/
LPNOTIFYREGISTER
apidl
;
/* array of entries to watch*/
UINT
cidl
;
/* number of pidls in array */
UINT
cidl
;
/* number of pidls in array */
LONG
wEventMask
;
/* subscribed events */
LONG
wEventMask
;
/* subscribed events */
LONG
wSignalledEvent
;
/* event that occurred */
DWORD
dwFlags
;
/* client flags */
DWORD
dwFlags
;
/* client flags */
LPCITEMIDLIST
pidlSignaled
;
/*pidl of the path that caused the signal*/
ULONG
id
;
ULONG
id
;
}
NOTIFICATIONLIST
,
*
LPNOTIFICATIONLIST
;
}
NOTIFICATIONLIST
,
*
LPNOTIFICATIONLIST
;
...
@@ -185,7 +183,6 @@ SHChangeNotifyRegister(
...
@@ -185,7 +183,6 @@ SHChangeNotifyRegister(
item
->
hwnd
=
hwnd
;
item
->
hwnd
=
hwnd
;
item
->
uMsg
=
uMsg
;
item
->
uMsg
=
uMsg
;
item
->
wEventMask
=
wEventMask
;
item
->
wEventMask
=
wEventMask
;
item
->
wSignalledEvent
=
0
;
item
->
dwFlags
=
fSources
;
item
->
dwFlags
=
fSources
;
item
->
id
=
InterlockedIncrement
(
&
next_id
);
item
->
id
=
InterlockedIncrement
(
&
next_id
);
...
@@ -236,6 +233,15 @@ BOOL WINAPI SHChangeNotifyUpdateEntryList(DWORD unknown1, DWORD unknown2,
...
@@ -236,6 +233,15 @@ BOOL WINAPI SHChangeNotifyUpdateEntryList(DWORD unknown1, DWORD unknown2,
return
-
1
;
return
-
1
;
}
}
struct
new_delivery_notification
{
LONG
event
;
DWORD
pidl1_size
;
DWORD
pidl2_size
;
LPITEMIDLIST
pidls
[
2
];
BYTE
data
[
1
];
};
static
BOOL
should_notify
(
LPCITEMIDLIST
changed
,
LPCITEMIDLIST
watched
,
BOOL
sub
)
static
BOOL
should_notify
(
LPCITEMIDLIST
changed
,
LPCITEMIDLIST
watched
,
BOOL
sub
)
{
{
TRACE
(
"%p %p %d
\n
"
,
changed
,
watched
,
sub
);
TRACE
(
"%p %p %d
\n
"
,
changed
,
watched
,
sub
);
...
@@ -260,6 +266,7 @@ void WINAPI SHChangeNotify(LONG wEventId, UINT uFlags, LPCVOID dwItem1, LPCVOID
...
@@ -260,6 +266,7 @@ void WINAPI SHChangeNotify(LONG wEventId, UINT uFlags, LPCVOID dwItem1, LPCVOID
DWORD
flags
;
DWORD
flags
;
}
*
cur
,
*
next
;
}
*
cur
,
*
next
;
HANDLE
shared_data
=
NULL
;
LPITEMIDLIST
Pidls
[
2
];
LPITEMIDLIST
Pidls
[
2
];
LPNOTIFICATIONLIST
ptr
;
LPNOTIFICATIONLIST
ptr
;
struct
list
recipients
;
struct
list
recipients
;
...
@@ -368,16 +375,43 @@ void WINAPI SHChangeNotify(LONG wEventId, UINT uFlags, LPCVOID dwItem1, LPCVOID
...
@@ -368,16 +375,43 @@ void WINAPI SHChangeNotify(LONG wEventId, UINT uFlags, LPCVOID dwItem1, LPCVOID
{
{
TRACE
(
"notifying %p, event %s(%x)
\n
"
,
cur
->
hwnd
,
DumpEvent
(
wEventId
),
wEventId
);
TRACE
(
"notifying %p, event %s(%x)
\n
"
,
cur
->
hwnd
,
DumpEvent
(
wEventId
),
wEventId
);
ptr
->
wSignalledEvent
|=
wEventId
;
if
(
cur
->
flags
&
SHCNRF_NewDelivery
)
{
if
(
!
shared_data
)
{
struct
new_delivery_notification
*
notification
;
UINT
size1
=
ILGetSize
(
Pidls
[
0
]),
size2
=
ILGetSize
(
Pidls
[
1
]);
UINT
offset
=
(
size1
+
sizeof
(
int
)
-
1
)
/
sizeof
(
int
)
*
sizeof
(
int
);
if
(
cur
->
flags
&
SHCNRF_NewDelivery
)
notification
=
SHAlloc
(
sizeof
(
struct
new_delivery_notification
)
+
offset
+
size2
);
FIXME
(
"SHCNRF_NewDelivery flag is not supported
\n
"
);
if
(
!
notification
)
{
ERR
(
"out of memory
\n
"
);
}
else
{
notification
->
event
=
wEventId
;
notification
->
pidl1_size
=
size1
;
notification
->
pidl2_size
=
size2
;
if
(
size1
)
memcpy
(
notification
->
data
,
Pidls
[
0
],
size1
);
if
(
size2
)
memcpy
(
notification
->
data
+
offset
,
Pidls
[
1
],
size2
);
shared_data
=
SHAllocShared
(
notification
,
sizeof
(
struct
new_delivery_notification
)
+
size1
+
size2
,
GetCurrentProcessId
());
SHFree
(
notification
);
}
}
if
(
shared_data
)
SendMessageA
(
cur
->
hwnd
,
cur
->
msg
,
(
WPARAM
)
shared_data
,
GetCurrentProcessId
());
else
else
ERR
(
"out of memory
\n
"
);
}
else
{
SendMessageA
(
cur
->
hwnd
,
cur
->
msg
,
(
WPARAM
)
Pidls
,
wEventId
);
SendMessageA
(
cur
->
hwnd
,
cur
->
msg
,
(
WPARAM
)
Pidls
,
wEventId
);
}
list_remove
(
&
cur
->
entry
);
list_remove
(
&
cur
->
entry
);
SHFree
(
cur
);
SHFree
(
cur
);
}
}
SHFreeShared
(
shared_data
,
GetCurrentProcessId
());
SHFree
(
Pidls
[
0
]);
SHFree
(
Pidls
[
0
]);
SHFree
(
Pidls
[
1
]);
SHFree
(
Pidls
[
1
]);
...
@@ -418,33 +452,28 @@ HANDLE WINAPI SHChangeNotification_Lock(
...
@@ -418,33 +452,28 @@ HANDLE WINAPI SHChangeNotification_Lock(
LPITEMIDLIST
**
lppidls
,
LPITEMIDLIST
**
lppidls
,
LPLONG
lpwEventId
)
LPLONG
lpwEventId
)
{
{
DWORD
i
;
struct
new_delivery_notification
*
ndn
;
LPNOTIFICATIONLIST
node
;
UINT
offset
;
LPCITEMIDLIST
*
idlist
;
TRACE
(
"%p %08x %p %p
\n
"
,
hChange
,
dwProcessId
,
lppidls
,
lpwEventId
);
TRACE
(
"%p %08x %p %p
\n
"
,
hChange
,
dwProcessId
,
lppidls
,
lpwEventId
);
/* EnterCriticalSection(&SHELL32_ChangenotifyCS); */
ndn
=
SHLockShared
(
hChange
,
dwProcessId
);
if
(
!
ndn
)
{
LIST_FOR_EACH_ENTRY
(
node
,
&
notifications
,
NOTIFICATIONLIST
,
entry
)
WARN
(
"SHLockShared failed
\n
"
);
{
return
NULL
;
if
(
node
==
hChange
)
{
idlist
=
SHAlloc
(
sizeof
(
LPCITEMIDLIST
*
)
*
node
->
cidl
);
for
(
i
=
0
;
i
<
node
->
cidl
;
i
++
)
idlist
[
i
]
=
node
->
pidlSignaled
;
*
lpwEventId
=
node
->
wSignalledEvent
;
*
lppidls
=
(
LPITEMIDLIST
*
)
idlist
;
node
->
wSignalledEvent
=
0
;
/* LeaveCriticalSection(&SHELL32_ChangenotifyCS); */
return
node
;
}
}
if
(
lppidls
)
{
offset
=
(
ndn
->
pidl1_size
+
sizeof
(
int
)
-
1
)
/
sizeof
(
int
)
*
sizeof
(
int
);
ndn
->
pidls
[
0
]
=
ndn
->
pidl1_size
?
(
LPITEMIDLIST
)
ndn
->
data
:
NULL
;
ndn
->
pidls
[
1
]
=
ndn
->
pidl2_size
?
(
LPITEMIDLIST
)(
ndn
->
data
+
offset
)
:
NULL
;
*
lppidls
=
ndn
->
pidls
;
}
}
ERR
(
"Couldn't find %p
\n
"
,
hChange
);
/* LeaveCriticalSection(&SHELL32_ChangenotifyCS); */
if
(
lpwEventId
)
*
lpwEventId
=
ndn
->
event
;
return
0
;
return
ndn
;
}
}
/*************************************************************************
/*************************************************************************
...
@@ -452,8 +481,8 @@ HANDLE WINAPI SHChangeNotification_Lock(
...
@@ -452,8 +481,8 @@ HANDLE WINAPI SHChangeNotification_Lock(
*/
*/
BOOL
WINAPI
SHChangeNotification_Unlock
(
HANDLE
hLock
)
BOOL
WINAPI
SHChangeNotification_Unlock
(
HANDLE
hLock
)
{
{
TRACE
(
"
\n
"
);
TRACE
(
"
%p
\n
"
,
hLock
);
return
1
;
return
SHUnlockShared
(
hLock
)
;
}
}
/*************************************************************************
/*************************************************************************
...
...
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