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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--samples/embed/test.cs2
-rw-r--r--samples/embed/teste.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/samples/embed/test.cs b/samples/embed/test.cs
index 9e6f9228497..3283006d8b3 100644
--- a/samples/embed/test.cs
+++ b/samples/embed/test.cs
@@ -1,7 +1,7 @@
using System;
using System.Runtime.CompilerServices;
-class Mono {
+class MonoEmbed {
[MethodImplAttribute(MethodImplOptions.InternalCall)]
extern static string gimme();
diff --git a/samples/embed/teste.c b/samples/embed/teste.c
index eb7131508c6..d67720a145f 100644
--- a/samples/embed/teste.c
+++ b/samples/embed/teste.c
@@ -63,7 +63,7 @@ main(int argc, char* argv[]) {
* We add our special internal call, so that C# code
* can call us back.
*/
- mono_add_internal_call ("Mono::gimme", gimme);
+ mono_add_internal_call ("MonoEmbed::gimme", gimme);
main_args.domain=domain;
main_args.file=file;