ASDAlexander77 / cs2cpp

C# to C++ transpiler (Cs2Cpp) (Powered by Roslyn)
http://csnative.codeplex.com
254 stars 62 forks source link

DllImport/Pinvoke support #7

Open alisci01 opened 7 years ago

alisci01 commented 7 years ago

figured i try opening issues before i start working on things.

i was planning on tackling this next. my general idea was to generate function pointers for all dllimport functions that initially point to a trampoline that attempts to load the library/function. if it successfully loads, it'll replace the function pointer with what we grabbed, otherwise we throw an exception to mimic the JIT CLR behaviour.

ill probably leave out marshalling on the first pass, mostly because i always avoided it and need to do more proper research on it.

ASDAlexander77 commented 7 years ago

having PInvoke would be biggest plus to the project, BTW you can have a look at CoreRT into PInvoke test to see if you can get any ideas