AmandaInterface.AmandaHook.CreateInterpreter C# (CSharp) Метод

CreateInterpreter() приватный Метод

private CreateInterpreter ( ) : void
Результат void
        public static extern void CreateInterpreter();

Usage Example

Пример #1
0
        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);
            }
        }