Skip to content

Commit

Permalink
Update libmonovm.h
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwidoggie authored Aug 13, 2023
1 parent 7bbeba0 commit 2a54de4
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions include/orbis/libmonovm.h
Original file line number Diff line number Diff line change
Expand Up @@ -399,11 +399,17 @@ void mono_field_set_value(MonoObject *obj, MonoClassField *field, void *value);
// Empty Comment
void mono_field_get_value(MonoObject *obj, MonoClassField *field, void *value);
// Empty Comment
MonoObject* mono_field_get_value_object(MonoDomain* domain, MonoClassField *field, MonoObject* value);
// Empty Comment
MonoClass* mono_get_byte_class();
// Empty Comment
void mono_class_get_nesting_type();
// Empty Comment
void mono_class_get_type();
MonoType* mono_class_get_type(MonoClass* klass);
// Empty Comment
MonoType* mono_class_inflate_generic_type(MonoType *type, MonoGenericContext *context) /* MONO_DEPRECATED */;
//
MonoClass* mono_class_from_mono_type(MonoType *type);
// Empty Comment
void mono_config_parse();
// Empty Comment
Expand Down Expand Up @@ -594,10 +600,17 @@ void mono_type_get_class();
void mono_type_get_type();
// Empty Comment
void mono_unhandled_exception();

// Empty Comment
guint32 mono_gchandle_new(MonoObject* obj, gboolean pinned);
// Empty Comment
MonoObject* mono_gchandle_get_target(guint32 gchandle);
// Empty Comment
void mono_gchandle_free(guint32 gchandle);
// Empty Comment
gpointer mono_compile_method(MonoMethod *method);

#ifdef __cplusplus
}
#endif

#endif
#endif // _SCE_MONO_VM_H_

0 comments on commit 2a54de4

Please sign in to comment.