CSPspEmu.Hle.Threading.EventFlags.HleEventFlag._DoClear C# (CSharp) Метод

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

private _DoClear ( EventFlagWaitTypeSet WaitType, uint BitsToMatch ) : void
WaitType EventFlagWaitTypeSet
BitsToMatch uint
Результат void
        private void _DoClear(EventFlagWaitTypeSet WaitType, uint BitsToMatch)
        {
            if (WaitType.HasFlag(EventFlagWaitTypeSet.ClearAll)) ClearBits(~uint.MaxValue, false);
            if (WaitType.HasFlag(EventFlagWaitTypeSet.Clear)) ClearBits(~BitsToMatch, false);
        }