5
5
#include <mono/metadata/debug-helpers.h>
6
6
#include <string.h>
7
7
#include <stdlib.h>
8
- #include <glib.h>
8
+
9
+ #ifndef FALSE
10
+ #define FALSE 0
11
+ #endif
9
12
10
13
/*
11
14
* Simple mono embedding example.
@@ -76,7 +79,7 @@ access_reference_field (MonoObject *obj)
76
79
p = mono_string_to_utf8 (strval );
77
80
printf ("Value of str is: %s\n" , p );
78
81
/* we need to free the result from mono_string_to_utf8 () */
79
- g_free (p );
82
+ mono_free (p );
80
83
81
84
/* string are immutable, so we need to create a different string */
82
85
strval = mono_string_new (domain , "hello from the embedding API" );
@@ -99,8 +102,8 @@ call_methods (MonoObject *obj)
99
102
MonoObject * result , * exception ;
100
103
MonoString * str ;
101
104
char * p ;
102
- gpointer iter ;
103
- gpointer args [2 ];
105
+ void * iter ;
106
+ void * args [2 ];
104
107
int val ;
105
108
106
109
klass = mono_object_get_class (obj );
@@ -164,7 +167,7 @@ call_methods (MonoObject *obj)
164
167
p = mono_string_to_utf8 (str );
165
168
printf ("Value of str from property is: %s\n" , p );
166
169
/* we need to free the result from mono_string_to_utf8 () */
167
- g_free (p );
170
+ mono_free (p );
168
171
169
172
/* Now we'll show two things:
170
173
* 1) static methods are invoked with mono_runtime_invoke () as well,
@@ -205,7 +208,7 @@ call_methods (MonoObject *obj)
205
208
p = mono_string_to_utf8 (str );
206
209
printf ("Values of str/val from Values () are: %s/%d\n" , p , val );
207
210
/* we need to free the result from mono_string_to_utf8 () */
208
- g_free (p );
211
+ mono_free (p );
209
212
}
210
213
211
214
static void
@@ -241,7 +244,7 @@ more_methods (MonoDomain *domain)
241
244
p = mono_string_to_utf8 (str );
242
245
printf ("25.ToString (): %s\n" , p );
243
246
/* we need to free the result from mono_string_to_utf8 () */
244
- g_free (p );
247
+ mono_free (p );
245
248
246
249
/* Now: see how the result is different if we search for the ToString ()
247
250
* method in System.Object: mono_runtime_invoke () doesn't do any sort of
@@ -255,7 +258,7 @@ more_methods (MonoDomain *domain)
255
258
p = mono_string_to_utf8 (str );
256
259
printf ("25.ToString (), from System.Object: %s\n" , p );
257
260
/* we need to free the result from mono_string_to_utf8 () */
258
- g_free (p );
261
+ mono_free (p );
259
262
260
263
/* Now get the method that overrides ToString () in obj */
261
264
vtmethod = mono_object_get_virtual_method (obj , method );
0 commit comments