chore(release): prepare public source release
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,5 @@
|
||||
//! Binary entry point for `drvshape`.
|
||||
|
||||
fn main() {
|
||||
std::process::exit(petools::main_entry(petools::ToolKind::DriverShape));
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
//! Binary entry point for `ioctlscan`.
|
||||
|
||||
fn main() {
|
||||
std::process::exit(petools::main_entry(petools::ToolKind::IoctlScan));
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
//! Binary entry point for `pecalls`.
|
||||
|
||||
fn main() {
|
||||
std::process::exit(petools::main_entry(petools::ToolKind::Calls));
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
//! Binary entry point for `peexports`.
|
||||
|
||||
fn main() {
|
||||
std::process::exit(petools::main_entry(petools::ToolKind::Exports));
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
//! Binary entry point for `peimports`.
|
||||
|
||||
fn main() {
|
||||
std::process::exit(petools::main_entry(petools::ToolKind::Imports));
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
//! Binary entry point for `pesig`.
|
||||
|
||||
fn main() {
|
||||
std::process::exit(petools::main_entry(petools::ToolKind::Signatures));
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
//! Binary entry point for `pestrrefs`.
|
||||
|
||||
fn main() {
|
||||
std::process::exit(petools::main_entry(petools::ToolKind::StringRefs));
|
||||
}
|
||||
Reference in New Issue
Block a user