1
0

feat: add func in lowlevel

This commit is contained in:
2026-05-06 21:44:40 +08:00
parent edb9d0a14d
commit 3edb08efc7

View File

@@ -809,6 +809,17 @@ impl ProgIdKey {
todo!()
}
const NAMEOF_SHELL_VERB_PART1: &str = "shell";
const NAMEOF_SHELL_VERB_PART3: &str = "command";
pub fn get_shell_verb(&self, view: View) -> Result<ShellVerb, Error> {
todo!()
}
pub fn set_shell_verb(&mut self, scope: Scope, sv: &ShellVerb) -> Result<(), Error> {
todo!()
}
const NAMEOF_FRIENDLY_TYPE_NAME: &str = "FriendlyTypeName";
pub fn get_friendly_type_name(&self, view: View) -> Result<Option<StrResVariant>, Error> {