BoxedAppSDK_SharedMem_Free
Description
The function releases the memory block 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;
void __stdcall BoxedAppSDK_SharedMem_Free(BOXEDAPP_SHARED_PTR shared_ptr);
Delphi
type
BOXEDAPP_SHARED_PTR = LargeInt;
procedure BoxedAppSDK_SharedMem_Free(shared_ptr: BOXEDAPP_SHARED_PTR); stdcall;
Parameters
shared_ptr
The shared pointer of the memory block to release.