ib-shell 0.2.0

A library for Windows Shell.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
param(
    [switch]$r
)

$p = "debug"
if ($r) {
    $p = "release-debug"
}

$buildProfile = $p
if ($p -eq "debug") {
    $buildProfile = "dev"
}
cargo build -p ib-shell --example hook --profile $buildProfile
if (!$?) {
    exit $?
}
cargo run -p ib-shell --bin inject-hook --features=hook,hook-dll,everything,bin -- --profile $p