mirror of
https://github.com/latentPrion/libspinscale.git
synced 2026-02-27 14:36:04 +00:00
Remaining areas to split off: * The handleLoopException, exceptionInd logic. * getThreadName().
24 lines
372 B
C++
24 lines
372 B
C++
#ifndef RUNTIME_H
|
|
#define RUNTIME_H
|
|
|
|
namespace sscl {
|
|
|
|
struct CrtCommandLineArgs
|
|
{
|
|
CrtCommandLineArgs(int argc, char *argv[], char *envp[])
|
|
: argc(argc), argv(argv), envp(envp)
|
|
{}
|
|
|
|
int argc;
|
|
char **argv;
|
|
char **envp;
|
|
|
|
static void set(int argc, char *argv[], char *envp[]);
|
|
};
|
|
|
|
extern CrtCommandLineArgs crtCommandLineArgs;
|
|
|
|
} // namespace sscl
|
|
|
|
#endif // RUNTIME_H
|