diff options
Diffstat (limited to '')
-rw-r--r-- | CPP/Windows/Handle.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CPP/Windows/Handle.h b/CPP/Windows/Handle.h index 5878c83..6ae09ec 100644 --- a/CPP/Windows/Handle.h +++ b/CPP/Windows/Handle.h | |||
@@ -1,9 +1,9 @@ | |||
1 | // Windows/Handle.h | 1 | // Windows/Handle.h |
2 | 2 | ||
3 | #ifndef __WINDOWS_HANDLE_H | 3 | #ifndef ZIP7_INC_WINDOWS_HANDLE_H |
4 | #define __WINDOWS_HANDLE_H | 4 | #define ZIP7_INC_WINDOWS_HANDLE_H |
5 | 5 | ||
6 | #include "../Common/MyTypes.h" | 6 | #include "../Common/MyWindows.h" |
7 | 7 | ||
8 | namespace NWindows { | 8 | namespace NWindows { |
9 | 9 | ||
@@ -28,7 +28,7 @@ public: | |||
28 | void Attach(HANDLE handle) { _handle = handle; } | 28 | void Attach(HANDLE handle) { _handle = handle; } |
29 | HANDLE Detach() | 29 | HANDLE Detach() |
30 | { | 30 | { |
31 | HANDLE handle = _handle; | 31 | const HANDLE handle = _handle; |
32 | _handle = NULL; | 32 | _handle = NULL; |
33 | return handle; | 33 | return handle; |
34 | } | 34 | } |