CSPspEmu.Hle.Modules.openpsid.sceOpenPSID.sceOpenPSIDGetOpenPSID C# (CSharp) Метод

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

private sceOpenPSIDGetOpenPSID ( PspOpenPSID OpenPSID ) : int
OpenPSID PspOpenPSID
Результат int
        public int sceOpenPSIDGetOpenPSID(PspOpenPSID* OpenPSID)
        {
            var DummyPspOpenPSID = default(PspOpenPSID);
            int n = 0;
            foreach (var Byte in new byte[] { 0x10, 0x02, 0xA3, 0x44, 0x13, 0xF5, 0x93, 0xB0, 0xCC, 0x6E, 0xD1, 0x32, 0x27, 0x85, 0x0F, 0x9D })
            {
                DummyPspOpenPSID.Data[n++] = Byte;
            }
            *OpenPSID = DummyPspOpenPSID;
            return 0;
        }