CSPspEmu.Hle.Modules.threadman.ThreadManForUser.sceKernelCreateMbx C# (CSharp) Метод

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

private sceKernelCreateMbx ( string Name, MbxAttributesEnum Attributes, SceKernelMbxOptParam Options ) : MessageBox
Name string
Attributes MbxAttributesEnum
Options SceKernelMbxOptParam
Результат MessageBox
        public MessageBox sceKernelCreateMbx(string Name, MbxAttributesEnum Attributes, SceKernelMbxOptParam* Options)
        {
            if (Options != null) throw(new NotImplementedException());
            if (Attributes.HasFlag(MbxAttributesEnum.RecvPriority)) throw(new NotImplementedException());
            if (Attributes.HasFlag(MbxAttributesEnum.SendPriority)) throw (new NotImplementedException());

            var Mbx = new MessageBox()
            {
                Name = Name,
                Attributes = Attributes,
            };
            if (Options != null) Mbx.Options = *Options;
            return Mbx;
        }
ThreadManForUser