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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)]
/* automatically generated by rust-bindgen */

#[doc = ""]
#[doc = " This class defines global limits for input and output of all modules."]
#[doc = ""]
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct FALimits {
    pub _address: u8,
}
pub const FALimits_MaxArrSize: FALimits__bindgen_ty_1 = 1000000000;
pub const FALimits_MaxChainSize: FALimits__bindgen_ty_1 = 1000000000;
pub const FALimits_MaxStateVal: FALimits__bindgen_ty_1 = 1000000000;
pub const FALimits_MaxIwVal: FALimits__bindgen_ty_1 = 1000000000;
pub const FALimits_MaxIw: FALimits__bindgen_ty_1 = 1000000000;
pub const FALimits_MaxLdbDumpCount: FALimits__bindgen_ty_1 = 105;
pub const FALimits_MaxWordLen: FALimits__bindgen_ty_1 = 300;
pub const FALimits_MaxWordSize: FALimits__bindgen_ty_1 = 300;
pub const FALimits_MaxWordCount: FALimits__bindgen_ty_1 = 1000;
pub const FALimits_MaxParadigmSize: FALimits__bindgen_ty_1 = 1000;
pub const FALimits_MaxTagsPerWord: FALimits__bindgen_ty_1 = 100;
pub const FALimits_MinTag: FALimits__bindgen_ty_1 = 1;
pub const FALimits_MaxTag: FALimits__bindgen_ty_1 = 65535;
pub const FALimits_MaxGram: FALimits__bindgen_ty_1 = 4;
pub type FALimits__bindgen_ty_1 = u32;
#[test]
fn bindgen_test_layout_FALimits() {
    assert_eq!(
        ::std::mem::size_of::<FALimits>(),
        1usize,
        concat!("Size of: ", stringify!(FALimits))
    );
    assert_eq!(
        ::std::mem::align_of::<FALimits>(),
        1usize,
        concat!("Alignment of ", stringify!(FALimits))
    );
}
extern "C" {
    pub fn TextToSentences(
        pInUtf8Str: *const ::std::os::raw::c_char,
        InUtf8StrByteCount: ::std::os::raw::c_int,
        pOutUtf8Str: *mut ::std::os::raw::c_char,
        MaxOutUtf8StrByteCount: ::std::os::raw::c_int,
    ) -> ::std::os::raw::c_int;
}
extern "C" {
    pub fn TextToWords(
        pInUtf8Str: *const ::std::os::raw::c_char,
        InUtf8StrByteCount: ::std::os::raw::c_int,
        pOutUtf8Str: *mut ::std::os::raw::c_char,
        MaxOutUtf8StrByteCount: ::std::os::raw::c_int,
    ) -> ::std::os::raw::c_int;
}