diff options
Diffstat (limited to '')
-rw-r--r-- | CPP/Windows/FileMapping.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CPP/Windows/FileMapping.h b/CPP/Windows/FileMapping.h index f90c429..caa7ea3 100644 --- a/CPP/Windows/FileMapping.h +++ b/CPP/Windows/FileMapping.h | |||
@@ -1,7 +1,7 @@ | |||
1 | // Windows/FileMapping.h | 1 | // Windows/FileMapping.h |
2 | 2 | ||
3 | #ifndef __WINDOWS_FILEMAPPING_H | 3 | #ifndef ZIP7_INC_WINDOWS_FILE_MAPPING_H |
4 | #define __WINDOWS_FILEMAPPING_H | 4 | #define ZIP7_INC_WINDOWS_FILE_MAPPING_H |
5 | 5 | ||
6 | #include "../Common/MyTypes.h" | 6 | #include "../Common/MyTypes.h" |
7 | 7 | ||
@@ -34,7 +34,7 @@ public: | |||
34 | return res; | 34 | return res; |
35 | #else | 35 | #else |
36 | _handle = ::OpenFileMapping(desiredAccess, FALSE, name); | 36 | _handle = ::OpenFileMapping(desiredAccess, FALSE, name); |
37 | if (_handle != 0) | 37 | if (_handle != NULL) |
38 | return 0; | 38 | return 0; |
39 | return ::GetLastError(); | 39 | return ::GetLastError(); |
40 | #endif | 40 | #endif |