Guest User

Untitled

a guest
Feb 24th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public const string RUBY_DLL = @"msvcrt-ruby18";
  2.  
  3. [DllImport(RUBY_DLL, CallingConvention = CallingConvention.Cdecl)]
  4. private static extern void ruby_init();
  5.  
  6. // ... Everything in between...
  7.  
  8. [DllImport(RUBY_DLL, CallingConvention = CallingConvention.Cdecl)]
  9. private static extern void ruby_finalize();
Add Comment
Please, Sign In to add comment