aboutsummaryrefslogtreecommitdiff
path: root/CPP/Windows/FileFind.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--CPP/Windows/FileFind.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/CPP/Windows/FileFind.h b/CPP/Windows/FileFind.h
index fcfe02c..11408d0 100644
--- a/CPP/Windows/FileFind.h
+++ b/CPP/Windows/FileFind.h
@@ -1,7 +1,7 @@
1// Windows/FileFind.h 1// Windows/FileFind.h
2 2
3#ifndef __WINDOWS_FILE_FIND_H 3#ifndef ZIP7_INC_WINDOWS_FILE_FIND_H
4#define __WINDOWS_FILE_FIND_H 4#define ZIP7_INC_WINDOWS_FILE_FIND_H
5 5
6#ifndef _WIN32 6#ifndef _WIN32
7#include <sys/stat.h> 7#include <sys/stat.h>
@@ -249,7 +249,15 @@ class CFindChangeNotification MY_UNCOPYABLE
249 HANDLE _handle; 249 HANDLE _handle;
250public: 250public:
251 operator HANDLE () { return _handle; } 251 operator HANDLE () { return _handle; }
252 bool IsHandleAllocated() const { return _handle != INVALID_HANDLE_VALUE && _handle != 0; } 252 bool IsHandleAllocated() const
253 {
254 /* at least on win2000/XP (undocumented):
255 if pathName is "" or NULL,
256 FindFirstChangeNotification() could return NULL.
257 So we check for INVALID_HANDLE_VALUE and NULL.
258 */
259 return _handle != INVALID_HANDLE_VALUE && _handle != NULL;
260 }
253 CFindChangeNotification(): _handle(INVALID_HANDLE_VALUE) {} 261 CFindChangeNotification(): _handle(INVALID_HANDLE_VALUE) {}
254 ~CFindChangeNotification() { Close(); } 262 ~CFindChangeNotification() { Close(); }
255 bool Close() throw(); 263 bool Close() throw();