[SHELL32] Follow-up 2 of #2659

Add TODO comments.
Make CreateAPCThread static.
CORE-13950
This commit is contained in:
Katayama Hirofumi MZ 2020-05-04 16:22:38 +09:00
parent 7980f40911
commit 11b6f973b7

View file

@ -12,6 +12,8 @@
WINE_DEFAULT_DEBUG_CHANNEL(shcn); WINE_DEFAULT_DEBUG_CHANNEL(shcn);
// TODO: SHCNRF_RecursiveInterrupt
static inline void static inline void
NotifyFileSystemChange(LONG wEventId, LPCWSTR path1, LPCWSTR path2) NotifyFileSystemChange(LONG wEventId, LPCWSTR path1, LPCWSTR path2)
{ {
@ -21,6 +23,8 @@ NotifyFileSystemChange(LONG wEventId, LPCWSTR path1, LPCWSTR path2)
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
// DIRLIST --- directory list // DIRLIST --- directory list
// TODO: Share a DIRLIST in multiple Explorer
struct DIRLISTITEM struct DIRLISTITEM
{ {
WCHAR szPath[MAX_PATH]; 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) if (s_hThreadAPC != NULL)
return TRUE; return TRUE;