mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[SHELL32] Follow-up 2 of #2659
Add TODO comments. Make CreateAPCThread static. CORE-13950
This commit is contained in:
parent
7980f40911
commit
11b6f973b7
1 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue