max-sys 0.1.1

Raw FFI bindings to the Modular MAX C API (generated by bindgen)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Raw FFI bindings to the Modular MAX C API.
//!
//! Generated by bindgen from the headers in `max/include/max/c/`.
//! These are opaque-struct-based bindings — you interact through
//! function pointers, not by reading struct fields directly.
//!
//! For a safe, ergonomic API, use `pyroxide` instead.

#![allow(non_upper_case_globals, reason = "C API naming convention")]
#![allow(non_camel_case_types, reason = "C API naming convention")]
#![allow(non_snake_case, reason = "C API naming convention")]
#![allow(dead_code, reason = "bindgen generates all symbols; not all are used")]
#![allow(clippy::pedantic, reason = "generated code, not hand-written")]
#![allow(clippy::unwrap_used, reason = "generated code, not hand-written")]

include!(concat!(env!("OUT_DIR"), "/bindings.rs"));