https://git.reactos.org/?p=reactos.git;a=commitdiff;h=11b6f973b7dcf7fa6ac4cc...
commit 11b6f973b7dcf7fa6ac4cc2fc28d26e42bf69c0d Author: Katayama Hirofumi MZ katayama.hirofumi.mz@gmail.com AuthorDate: Mon May 4 16:22:38 2020 +0900 Commit: Katayama Hirofumi MZ katayama.hirofumi.mz@gmail.com CommitDate: Mon May 4 16:22:38 2020 +0900
[SHELL32] Follow-up 2 of #2659
Add TODO comments. Make CreateAPCThread static. CORE-13950 --- dll/win32/shell32/shelldesktop/CChangeNotifyServer.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/dll/win32/shell32/shelldesktop/CChangeNotifyServer.cpp b/dll/win32/shell32/shelldesktop/CChangeNotifyServer.cpp index da619b9104b..b5dc5e968c9 100644 --- a/dll/win32/shell32/shelldesktop/CChangeNotifyServer.cpp +++ b/dll/win32/shell32/shelldesktop/CChangeNotifyServer.cpp @@ -12,6 +12,8 @@
WINE_DEFAULT_DEBUG_CHANNEL(shcn);
+// TODO: SHCNRF_RecursiveInterrupt + static inline void NotifyFileSystemChange(LONG wEventId, LPCWSTR path1, LPCWSTR path2) { @@ -21,6 +23,8 @@ NotifyFileSystemChange(LONG wEventId, LPCWSTR path1, LPCWSTR path2) ////////////////////////////////////////////////////////////////////////////// // DIRLIST --- directory list
+// TODO: Share a DIRLIST in multiple Explorer + struct DIRLISTITEM { WCHAR szPath[MAX_PATH]; @@ -787,7 +791,7 @@ void CChangeNotifyServer::RemoveItemsByProcess(DWORD dwOwnerPID, DWORD dwUserPID } }
-BOOL CreateAPCThread(void) +static BOOL CreateAPCThread(void) { if (s_hThreadAPC != NULL) return TRUE;