From 3edb08efc71f9de076c29118b72a2c89cef0a2e1 Mon Sep 17 00:00:00 2001 From: yyc12345 Date: Wed, 6 May 2026 21:44:40 +0800 Subject: [PATCH] feat: add func in lowlevel --- wfassoc/src/lowlevel.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/wfassoc/src/lowlevel.rs b/wfassoc/src/lowlevel.rs index ca917c0..1130ec8 100644 --- a/wfassoc/src/lowlevel.rs +++ b/wfassoc/src/lowlevel.rs @@ -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 { + 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, Error> {