native_api_1c_core/lib.rs
1//! Crate for working with 1C:Enterprise Native API. It contains
2//! low level FFI, moved from original C++ implementation, and high level
3//! interface for working with Native API from RUST. It attempts to be as
4//! close to original C++ implementation as possible, but some changes are
5//! made to make it more idiomatic in RUST.
6//!
7//! While it is possible to use this crate to implement your Native API
8//! Component, it is intended to be used with native_api_1c crate.
9
10/// Module for implementations of Native API FFI
11pub mod ffi;
12/// Module for high level interface of Native API
13pub mod interface;