Interpreter.cs 416 B

123456789101112
  1. using System.Runtime.InteropServices;
  2. namespace ET
  3. {
  4. public static class Interpreter
  5. {
  6. private const string InterpreterDll = "Interpreter";
  7. [DllImport(InterpreterDll, CallingConvention = CallingConvention.Cdecl)]
  8. public static extern void InterpreterInit([In][MarshalAs(UnmanagedType.LPStr)] string reloadDir, [In][MarshalAs(UnmanagedType.LPStr)] string exeName);
  9. }
  10. }