BoxedAppSDK_SharedMem_Lock
Description
The function returns a pointer that can be used for accessing the memory block, 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;
PVOID __stdcall BoxedAppSDK_SharedMem_Lock(BOXEDAPP_SHARED_PTR shared_ptr);
Delphi
type
BOXEDAPP_SHARED_PTR = LargeInt;
function BoxedAppSDK_SharedMem_Lock(shared_ptr: BOXEDAPP_SHARED_PTR): Pointer; stdcall;
Parameters
shared_ptr
The shared pointer of the memory block.