mirror of
https://github.com/latentPrion/libspinscale.git
synced 2026-02-27 14:36:04 +00:00
Split: Cleanly split spinscale off from SMO
Remaining areas to split off: * The handleLoopException, exceptionInd logic. * getThreadName().
This commit is contained in:
23
include/spinscale/runtime.h
Normal file
23
include/spinscale/runtime.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user