summaryrefslogtreecommitdiff
path: root/rust/examples/pdb-ng/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/examples/pdb-ng/src/lib.rs')
-rw-r--r--rust/examples/pdb-ng/src/lib.rs12
1 files changed, 12 insertions, 0 deletions
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
}