From 9619491446923956006456412424486179104727 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Thu, 30 May 2024 17:35:07 -0400 Subject: PDB: Option to disable parsing symbols --- rust/examples/pdb-ng/src/lib.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'rust/examples/pdb-ng/src/lib.rs') diff --git a/rust/examples/pdb-ng/src/lib.rs b/rust/examples/pdb-ng/src/lib.rs index 3fdea60f..6e6d216a 100644 --- a/rust/examples/pdb-ng/src/lib.rs +++ b/rust/examples/pdb-ng/src/lib.rs @@ -841,6 +841,18 @@ fn init_plugin() -> bool { }"#, ); + settings.register_setting_json( + "pdb.features.parseSymbols", + r#"{ + "title" : "Parse PDB Symbols", + "type" : "boolean", + "default" : true, + "aliases" : [], + "description" : "Parse Symbol names and types. If you turn this off, you will only load Types.", + "ignore" : [] + }"#, + ); + true } -- cgit v1.3.1