mirror of
https://github.com/latentPrion/libspinscale.git
synced 2026-06-23 19:48:32 +00:00
a7521f3760
Remaining areas to split off: * The handleLoopException, exceptionInd logic. * getThreadName().
13 lines
263 B
C++
13 lines
263 B
C++
#include <spinscale/runtime.h>
|
|
|
|
namespace sscl {
|
|
|
|
CrtCommandLineArgs crtCommandLineArgs(0, nullptr, nullptr);
|
|
|
|
void CrtCommandLineArgs::set(int argc, char *argv[], char *envp[])
|
|
{
|
|
crtCommandLineArgs = CrtCommandLineArgs(argc, argv, envp);
|
|
}
|
|
|
|
} // namespace sscl
|