// Token: 0x06000C02 RID: 3074 RVA: 0x0003DE30 File Offset: 0x0003C030
 public static PS3TMAPI.SNRESULT ProcessSetMemory(int target, PS3TMAPI.UnitType unit, uint processID, ulong threadID, ulong address, byte[] buffer)
 {
     PS3TMAPI.SNRESULT result;
     if (!PS3TMAPI.Is32Bit())
     {
         result = PS3TMAPI.ProcessSetMemoryX64(target, unit, processID, threadID, address, buffer.Length, buffer);
     }
     else
     {
         result = PS3TMAPI.ProcessSetMemoryX86(target, unit, processID, threadID, address, buffer.Length, buffer);
     }
     return(result);
 }
 // Token: 0x06000BFA RID: 3066 RVA: 0x0003DB60 File Offset: 0x0003BD60
 public static PS3TMAPI.SNRESULT ProcessAttach(int target, PS3TMAPI.UnitType unit, uint processID)
 {
     PS3TMAPI.SNRESULT result;
     if (!PS3TMAPI.Is32Bit())
     {
         result = PS3TMAPI.ProcessAttachX64(target, (uint)unit, processID);
     }
     else
     {
         result = PS3TMAPI.ProcessAttachX86(target, (uint)unit, processID);
     }
     return(result);
 }
 private static extern PS3TMAPI.SNRESULT ProcessGetMemoryX86(int target, PS3TMAPI.UnitType unit, uint processId, ulong threadId, ulong address, int count, byte[] buffer);