opcda-bridge-gateway 0.2.4

OPC DA gateway (Windows COM server)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod config;
pub mod logging;
pub mod opc;
pub mod run;
pub mod server;
pub mod service;

#[cfg(test)]
mod test_support;

#[cfg(target_os = "windows")]
pub mod opc_da_adapter;

#[cfg(not(target_os = "windows"))]
pub fn non_windows_run() -> ! {
    eprintln!("opcda-bridge gateway requires Windows (COM/DCOM dependency)");
    std::process::exit(1);
}