AmandaInterface.AmandaHook.CreateInterpreter C# (CSharp) Method

CreateInterpreter() private method

private CreateInterpreter ( ) : void
return void
        public static extern void CreateInterpreter();

Usage Example

示例#1
0
文件: Amanda.cs 项目: remco138/amanda
        private Amanda(string autorun = null)
        {
            if (Instance == null)
            {
                Instance = this;
            }

            AmandaHook.InitOptions(true, ""); //empty char will result in amanda loading up amanda.ini
            AmandaHook.CreateInterpreter();
            if (autorun != null)
            {
                AmandaHook.Load(autorun);
            }
        }