Skip to main content

hexa_tune_proto_ffi/
lib.rs

1// SPDX-FileCopyrightText: 2026 hexaTune LLC
2// SPDX-License-Identifier: MIT
3
4//! hexaTune FFI adapter — C ABI functions for Flutter/Dart integration.
5//!
6//! All functions use caller-owned buffers (pointer + length pattern).
7//! Return values: 0 = success, negative = error code.
8
9mod c_api;
10
11pub use c_api::*;