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