dear-implot3d-sys 0.13.0

Low-level FFI bindings for ImPlot3D via cimplot3d (C API)
Documentation
//! Low-level FFI bindings for ImPlot3D via the cimplot3d C API
//!
//! This crate pairs with `dear-imgui-sys` and exposes raw bindings to the
//! ImPlot3D library using the cimplot3d C API. Prefer using the higher-level
//! `dear-implot3d` crate for safe, idiomatic Rust wrappers.

#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(dead_code)]
#![allow(unnecessary_transmutes)]
#![allow(unsafe_op_in_unsafe_fn)]
#![allow(clippy::all)]
#![allow(unpredictable_function_pointer_comparisons)]

// Re-export Dear ImGui types for compatibility
pub use dear_imgui_sys::{ImDrawList, ImGuiContext, ImGuiID, ImTextureID, ImVec2, ImVec4};

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