1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
#![allow(bad_style)]
#![doc(html_root_url = "https://docs.rs/lammps-sys/0.6.0")]

//! Automatically-generated bindings for lammps, using bindgen.

#[cfg(feature = "mpi")]
extern crate mpi_sys;

#[cfg(feature = "mpi")]
extern "C" {
    pub fn lammps_open(
        argc: std::os::raw::c_int,
        argv: *mut *mut ::std::os::raw::c_char,
        communicator: mpi_sys::MPI_Comm,
        lmp: *mut *mut ::std::os::raw::c_void,
    );
}

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