aboutsummaryrefslogtreecommitdiff
path: root/CPP/Windows/MemoryGlobal.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--CPP/Windows/MemoryGlobal.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/CPP/Windows/MemoryGlobal.h b/CPP/Windows/MemoryGlobal.h
index c217510..6852591 100644
--- a/CPP/Windows/MemoryGlobal.h
+++ b/CPP/Windows/MemoryGlobal.h
@@ -1,7 +1,7 @@
1// Windows/MemoryGlobal.h 1// Windows/MemoryGlobal.h
2 2
3#ifndef __WINDOWS_MEMORY_GLOBAL_H 3#ifndef ZIP7_INC_WINDOWS_MEMORY_GLOBAL_H
4#define __WINDOWS_MEMORY_GLOBAL_H 4#define ZIP7_INC_WINDOWS_MEMORY_GLOBAL_H
5 5
6#include "../Common/MyWindows.h" 6#include "../Common/MyWindows.h"
7 7
@@ -12,7 +12,7 @@ class CGlobal
12{ 12{
13 HGLOBAL _global; 13 HGLOBAL _global;
14public: 14public:
15 CGlobal(): _global(NULL){}; 15 CGlobal(): _global(NULL) {}
16 ~CGlobal() { Free(); } 16 ~CGlobal() { Free(); }
17 operator HGLOBAL() const { return _global; } 17 operator HGLOBAL() const { return _global; }
18 void Attach(HGLOBAL hGlobal) 18 void Attach(HGLOBAL hGlobal)
@@ -22,7 +22,7 @@ public:
22 } 22 }
23 HGLOBAL Detach() 23 HGLOBAL Detach()
24 { 24 {
25 HGLOBAL h = _global; 25 const HGLOBAL h = _global;
26 _global = NULL; 26 _global = NULL;
27 return h; 27 return h;
28 } 28 }
@@ -42,10 +42,10 @@ public:
42 CGlobalLock(HGLOBAL hGlobal): _global(hGlobal) 42 CGlobalLock(HGLOBAL hGlobal): _global(hGlobal)
43 { 43 {
44 _ptr = GlobalLock(hGlobal); 44 _ptr = GlobalLock(hGlobal);
45 }; 45 }
46 ~CGlobalLock() 46 ~CGlobalLock()
47 { 47 {
48 if (_ptr != NULL) 48 if (_ptr)
49 GlobalUnlock(_global); 49 GlobalUnlock(_global);
50 } 50 }
51}; 51};