1
0

fix: resotre highlevel program internal struct

This commit is contained in:
2026-04-30 13:02:49 +08:00
parent 6096265017
commit 66dc8c2630

View File

@@ -282,15 +282,21 @@ impl Program {
// region: Program Internals
/// Internal used enum presenting a Program string resource.
type ProgramStr = lowlevel::LosseStrRefStr;
#[derive(Debug)]
struct ProgramStr {
inner: lowlevel::LosseStrRefStr,
}
/// Internal used enum presenting a Program icon resource.
type ProgramIcon = lowlevel::LosseIconRefStr;
#[derive(Debug)]
struct ProgramIcon {
inner: lowlevel::LosseIconRefStr,
}
/// Internal used enum presenting a Program behavior (command line setups).
#[derive(Debug)]
struct ProgramBehavior {
inner: String,
inner: win32::concept::CmdLine,
}
/// Internal used struct presenting a Program ProgId.