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
macro_rules! bin {
    ($bin:expr) => {
        if cfg!(target_os = "windows") {
            concat!($bin, ".exe")
        } else {
            $bin
        }
    };
}

macro_rules! bat {
    ($bat:expr) => {
        if cfg!(target_os = "windows") {
            concat!($bat, ".bat")
        } else {
            $bat
        }
    };
}

macro_rules! cmd {
    ($cmd:expr) => {
        if cfg!(target_os = "windows") {
            concat!($cmd, ".cmd")
        } else {
            $cmd
        }
    };
}

pub mod apk;
pub mod cargo;
pub mod dylibs;
pub mod error;
pub mod manifest;
pub mod ndk;
pub mod readelf;
pub mod target;