Update Settings Shell.

This commit is contained in:
Bruce
2025-12-01 22:51:46 +08:00
parent 5796fb40e1
commit 98c0f91b8c
28 changed files with 38814 additions and 382 deletions

View File

@@ -22,6 +22,7 @@
#include "notice.h"
#include "certmgr.h"
#include "bridge.h"
#include "filepath.h"
using namespace System;
using namespace System::Runtime::InteropServices;
@@ -170,11 +171,13 @@ public ref class _I_Bridge_Base
protected:
_I_String ^str = gcnew _I_String ();
_I_InitConfig ^initconfig = gcnew _I_InitConfig ();
_I_Storage ^storage;
_I_Storage ^storage = gcnew _I_Storage ();
_I_Package ^pkg = gcnew _I_Package ();
public:
property _I_String ^String { _I_String ^get () { return str; }}
property _I_InitConfig ^Config { _I_InitConfig ^get () { return initconfig; }}
property _I_Storage ^Storage { _I_Storage ^get () { return storage; }}
property _I_Package ^Package { _I_Package ^get () { return pkg; }}
};
[ComVisible (true)]
public interface class IScriptBridge