pub type DoublePtr = *mut *mut c_void;
Pointer to pointer type for C FFI.
Equivalent to void** in C. Used for double indirection in FFI calls.
void**