1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(dead_code)]
use libc;
use std::os::raw;
pub type EmacsSubr =
unsafe extern "C" fn(env: *mut EmacsEnv,
nargs: libc::ptrdiff_t,
args: *mut EmacsVal,
data: *mut raw::c_void) -> EmacsVal;
pub type EmacsEnv = emacs_env;
pub type EmacsRT = emacs_runtime;
pub type EmacsVal = emacs_value;
pub type Dtor = unsafe extern "C" fn(arg: *mut raw::c_void);
include!(concat!(env!("OUT_DIR"), "/emacs_module.rs"));