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

teste.c « embed « samples - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee7b84227d7990428ca328ee1508f5bb8ca317a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <mono/jit/jit.h>

/*
 * Very simple mono embedding example.
 * Compile with: 
 * 	gcc -o teste teste.c `pkg-config --cflags --libs mono` -lm
 * 	mcs test.cs
 * Run with:
 * 	./teste test.exe
 */

static MonoString*
gimme () {
	return mono_string_new (mono_domain_get (), "All your monos are belong to us!");
}

int 
main(int argc, char* argv[]) {
	MonoDomain *domain;
	MonoAssembly *assembly;
	const char *file;
	int retval;

	if (argc < 2){
		fprintf (stderr, "Please provide an assembly to load");
		return 1;
	}
	file = argv [1];
	/*
	 * mono_jit_init() creates a domain: each assembly is
	 * loaded and run in a MonoDomain.
	 */
	domain = mono_jit_init (file);
	/*
	 * We add our special internal call, so that C# code
	 * can call us back.
	 */
	mono_add_internal_call ("Mono::gimme", gimme);
	assembly = mono_domain_assembly_open (domain, file);
	if (!assembly)
		return 2;
	/*
	 * mono_jit_exec() will run the Main() method in the assembly
	 * and return the value.
	 */
	retval = mono_jit_exec (domain, assembly, argc - 1, argv + 1);
	mono_jit_cleanup (domain);
	return retval;
}