-
Notifications
You must be signed in to change notification settings - Fork 9
MEM_UM_new
BigETI edited this page May 4, 2018
·
1 revision
Allocate new unmanaged memory. Delete with MEM_UM_delete
Pointer of the allocated and unmanaged memory if successful, otherwise MEM_NULLUMPTR.
UnmanagedPointer:MEM_UM_new(cells = 1)
new UnmanagedPointer:pointer = MEM_UM_new();
if (pointer)
{
// Successful
}