mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 05:15:01 -06:00
4.44 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
804edc5756
commit
d9666cf046
45
CPP/Windows/Memory.h
Executable file
45
CPP/Windows/Memory.h
Executable file
@@ -0,0 +1,45 @@
|
||||
// Windows/Memory.h
|
||||
|
||||
#ifndef __WINDOWS_MEMORY_H
|
||||
#define __WINDOWS_MEMORY_H
|
||||
|
||||
namespace NWindows {
|
||||
namespace NMemory {
|
||||
|
||||
class CGlobal
|
||||
{
|
||||
HGLOBAL m_MemoryHandle;
|
||||
public:
|
||||
CGlobal(): m_MemoryHandle(NULL){};
|
||||
~CGlobal();
|
||||
operator HGLOBAL() const { return m_MemoryHandle; };
|
||||
void Attach(HGLOBAL hGlobal);
|
||||
HGLOBAL Detach();
|
||||
bool Alloc(UINT flags, SIZE_T size);
|
||||
bool Free();
|
||||
LPVOID Lock() const;
|
||||
void Unlock() const;
|
||||
bool ReAlloc(SIZE_T size);
|
||||
};
|
||||
|
||||
|
||||
class CGlobalLock
|
||||
{
|
||||
HGLOBAL m_Global;
|
||||
LPVOID m_Pointer;
|
||||
public:
|
||||
LPVOID GetPointer() const { return m_Pointer; }
|
||||
CGlobalLock(HGLOBAL hGlobal): m_Global(hGlobal)
|
||||
{
|
||||
m_Pointer = ::GlobalLock(hGlobal);
|
||||
};
|
||||
~CGlobalLock()
|
||||
{
|
||||
if(m_Pointer != NULL)
|
||||
::GlobalUnlock(m_Global);
|
||||
}
|
||||
};
|
||||
|
||||
}}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user