Move CRT Cmdline args obj & impl into libspinscale

This commit is contained in:
2026-02-17 10:22:25 -04:00
parent 3f3ff1283f
commit 18b632e5bb
3 changed files with 22 additions and 7 deletions

12
src/runtime.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include <spinscale/marionette.h>
namespace sscl {
CrtCommandLineArgs crtCommandLineArgs(0, nullptr, nullptr);
void CrtCommandLineArgs::set(int argc, char *argv[], char *envp[])
{
crtCommandLineArgs = CrtCommandLineArgs(argc, argv, envp);
}
} // namespace sscl