[mono] Introduce MonoMemoryManager to hold memory previously owned by the domain...
[mono-project.git] / mono / mini / monovm.h
blob09fc3d3850fa45403b9879520717cfc478cbda33
1 #ifndef _MONO_MINI_MONOVM_H_
2 #define _MONO_MINI_MONOVM_H_
4 #include <mono/utils/mono-publib.h>
5 #include <mono/mini/mono-private-unstable.h>
7 // MonoVM equivalents of the CoreCLR hosting API and helpers
8 // Only functional on netcore builds
10 // Moved to mono-private-unstable.h for now
11 //MONO_API int
12 //monovm_initialize (int propertyCount, const char **propertyKeys, const char **propertyValues);
14 MONO_API int
15 monovm_execute_assembly (int argc, const char **argv, const char *managedAssemblyPath, unsigned int *exitCode);
17 MONO_API int
18 monovm_shutdown (int *latchedExitCode);
20 #endif // _MONO_MINI_MONOVM_H_