syslog-ng-sys 0.3.0

Low level bindings for syslog-ng
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use c_char;

#[repr(C)]
pub struct ResolvedConfigurablePaths {
  cfgfilename : *const c_char,
  persist_file : *const c_char,
  ctlfilename : *const c_char,
  initial_module_path : *const c_char,
}

#[link(name = "syslog-ng")]
extern "C" {
    pub fn resolved_configurable_paths_init(slf: *mut ResolvedConfigurablePaths);
    pub static mut resolvedConfigurablePaths: ResolvedConfigurablePaths;
}