blob: 1843e65ac0ebb43d017e746b73a17c69c49beb5c (
plain)
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
|
#![recursion_limit="256"]
extern crate autopilot;
extern crate chrono;
#[macro_use]
extern crate combine;
extern crate core_graphics;
#[macro_use]
extern crate error_chain;
extern crate exitcode;
extern crate getopts;
extern crate libc;
#[macro_use]
extern crate log;
extern crate magic_crypt;
#[macro_use]
extern crate quick_error;
#[macro_use]
extern crate serde_derive;
extern crate stderrlog;
extern crate toml;
extern crate xdg;
#[macro_use]
mod prefix_println;
mod autopilot_internal;
mod config;
mod errors;
mod ffi;
mod key_code;
mod map;
mod parser;
mod trial;
use parser::{Action, HeadphoneButton, MapAction, MapGroup, MapKind};
pub use ffi::*;
|