Added demo for cpp module and updated the CppModule

This commit is contained in:
2025-06-24 22:11:15 +03:00
parent 89385a8c89
commit 962d813466
16 changed files with 304 additions and 62 deletions

View File

@@ -0,0 +1,10 @@
using CppCompatibilityModule;
using CppCompatibilityModule.Extern;
namespace CppModuleDemo;
internal static class InternalSettings
{
internal static ExternalApplicationHandler? ExternalApplicationHandler { get; set; } = null;
internal static Guid DemoModuleInternalId { get; set; } = Guid.Empty;
}