-
Notifications
You must be signed in to change notification settings - Fork 9
MEM_UM_get_val
BigETI edited this page May 4, 2018
·
1 revision
Get unmanaged value
Unmanaged value if successful, otherwise 0
.
MEM_UM_get_val(AnyPointer:pointer, index = 0)
new UnmanagedPointer:pointer = MEM_UM_new_value(1);
if (pointer)
{
printf("Value: %d", MEM_UM_get_val(pointer));
}