Welcome to mirror list, hosted at ThFree Co, Russian Federation.

monovm.c « mini « mono - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91f0f78f8ae510bc8efde9e2f9d39be2d8059f95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <config.h>
#include <mono/utils/mono-compiler.h>
#include "monovm.h"


int
monovm_initialize (int propertyCount, const char **propertyKeys, const char **propertyValues)
{
	return -1;
}

int
monovm_execute_assembly (int argc, const char **argv, const char *managedAssemblyPath, unsigned int *exitCode)
{
	return -1;
}

int
monovm_shutdown (int *latchedExitCode)
{
	return -1;
}