CSPspEmu.Hle.HleThread.SetWait0 C# (CSharp) Метод

SetWait0() защищенный Метод

protected SetWait0 ( WaitType WaitType, String WaitDescription, object WaitObject, bool HandleCallbacks ) : void
WaitType WaitType
WaitDescription String
WaitObject object
HandleCallbacks bool
Результат void
        protected void SetWait0(WaitType WaitType, String WaitDescription, object WaitObject, bool HandleCallbacks)
        {
            this.SetStatus(Status.Waiting);
            this.CurrentWaitType = WaitType;
            this.WaitDescription = WaitDescription;
            this.WaitObject = WaitObject;
            this.HandleCallbacks = HandleCallbacks;
        }