general: add comment for FFI and wrapper phases

This commit is contained in:
2025-11-12 17:21:41 +01:00
parent 33366ebb51
commit 5b37b34422
+3
View File
@@ -4,6 +4,8 @@
*/ */
mod ffi_point { mod ffi_point {
//FFI
use std::os::raw::c_double; use std::os::raw::c_double;
#[repr(C)] #[repr(C)]
@@ -23,6 +25,7 @@ mod ffi_point {
} }
// Safe wrapper // Safe wrapper
pub struct Point { pub struct Point {
ptr: *mut PointShape, ptr: *mut PointShape,
} }