##// END OF EJS Templates
rust-chg: add callback to handle pager and shell command requests...
rust-chg: add callback to handle pager and shell command requests This could be inlined into the ChgRunCommand state to be introduced by the next patch, but it seemed good to separate any user interactions from the IPC code.

File last commit:

r40005:208cb7a9 default
r40010:a9c5fc43 default
Show More
build.rs
8 lines | 138 B | application/rls-services+xml | RustLexer
extern crate cc;
fn main() {
cc::Build::new()
.warnings(true)
.file("src/sendfds.c")
.compile("procutil");
}