Questions tagged [mono-embedding]

33 questions
0
votes
1 answer

mono_add_internal_call with data

I'm trying to add internal calls to mono like follows: void addCall(char *name, char *amx_name) { AMX_NATIVE native = sampgdk::FindNative(name); void(*natcall)() = []() { //Can't access native here... :( …
ikkentim
  • 1,639
  • 15
  • 30
0
votes
1 answer

Bundling mono with a c++ app that embeds it

I have created a sample c++ app that uses dynamic linking to embed mono (as described here http://www.mono-project.com/Embedding_Mono) and use C# for scripting. It works well, as long as mono is installed in the global assembly cache (GAC). Is…
Nelson
  • 249
  • 2
  • 13
-1
votes
1 answer

mono_class_from_name_case returns nullptr

mono_class_from_name_case returns nullptr and i found no way to get more information why, and the mono documentation is very basic. My question is, i think i am missing something, is there a method to "link" the two assemblys together?, is that even…
1 2
3