CSPspEmu.Hle.HleThread.SetWait0 C# (CSharp) Method

SetWait0() protected method

protected SetWait0 ( WaitType WaitType, String WaitDescription, object WaitObject, bool HandleCallbacks ) : void
WaitType WaitType
WaitDescription String
WaitObject object
HandleCallbacks bool
return 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;
        }