Skip to content

Commit b05c5f8

Browse files
committed
[BNTL] Rename commands root from "BNTL" to "Type Library"
Fixes #8089
1 parent 73c8554 commit b05c5f8

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

plugins/bntl_utils/src/lib.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,37 +24,37 @@ fn plugin_init() -> Result<(), ()> {
2424
binaryninja::tracing_init!("BNTL Utils");
2525

2626
binaryninja::command::register_command(
27-
"BNTL\\Create\\From Current View",
27+
"Type Library\\Create\\From Current View",
2828
"Create .bntl files from the current view",
2929
command::create::CreateFromCurrentView {},
3030
);
3131

3232
binaryninja::command::register_command_for_project(
33-
"BNTL\\Create\\From Project",
33+
"Type Library\\Create\\From Project",
3434
"Create .bntl files from the given project",
3535
command::create::CreateFromProject {},
3636
);
3737

3838
binaryninja::command::register_global_command(
39-
"BNTL\\Create\\From Directory",
39+
"Type Library\\Create\\From Directory",
4040
"Create .bntl files from the given directory",
4141
command::create::CreateFromDirectory {},
4242
);
4343

4444
binaryninja::command::register_global_command(
45-
"BNTL\\Diff",
45+
"Type Library\\Diff",
4646
"Diff two .bntl files and output the difference to a file",
4747
command::diff::Diff {},
4848
);
4949

5050
binaryninja::command::register_global_command(
51-
"BNTL\\Dump To Header",
51+
"Type Library\\Dump To Header",
5252
"Dump a .bntl file to a header file",
5353
command::dump::Dump {},
5454
);
5555

5656
binaryninja::command::register_global_command(
57-
"BNTL\\Validate",
57+
"Type Library\\Validate",
5858
"Validate a .bntl file and report the issues",
5959
command::validate::Validate {},
6060
);

0 commit comments

Comments
 (0)