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)]
#![cfg_attr(feature = "cargo-clippy", allow(clippy))]
pub const ARR_LENGTH: usize = DATA_MAX_NAME_LEN as usize;
extern "C" {
#[link_name = "hostname_g"]
pub static mut hostname_g: [::std::os::raw::c_char; ARR_LENGTH];
}
#[cfg(any(test, feature = "stub"))]
#[allow(unused_variables)]
pub mod overrides {
use super::*;
#[no_mangle]
pub extern "C" fn plugin_dispatch_values(vl: *const value_list_t) -> ::std::os::raw::c_int {
0
}
#[no_mangle]
pub static mut hostname_g: [::std::os::raw::c_char; ARR_LENGTH] = [0; ARR_LENGTH];
}
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));