BoxedAppSDK_SharedMem_Unlock
Description
The function releases the pointer (not the memory!), which was used for accessing the memory block (see the BoxedAppSDK_SharedMem_Lock), allocated in the memory shared among all attached processes.
To allocate a memory block, use the function BoxedAppSDK_SharedMem_Alloc.
Syntax
C++
typedef LONGLONG BOXEDAPP_SHARED_PTR;
BOOL __stdcall BoxedAppSDK_SharedMem_Unlock(BOXEDAPP_SHARED_PTR shared_ptr);
Delphi
type
BOXEDAPP_SHARED_PTR = LargeInt;
function BoxedAppSDK_SharedMem_Unlock(shared_ptr: DWORD): BOOL; stdcall;
Parameters
shared_ptr
The shared pointer of the memory block.