Ejemplo n.º 1
0
 public static bool append_int32_be(LuaBytes bytes, uint value)
 {
     return(bytes.SetBigInt32(value, bytes.length));
 }
Ejemplo n.º 2
0
 public static bool append_int32_be(LuaBytes bytes, uint value)
 {
     return bytes.SetBigInt32(value, bytes.length);
 }
Ejemplo n.º 3
0
 public static bool set_int32_be(LuaBytes bytes, int offset, uint value)
 {
     return(bytes.SetBigInt32(value, offset - 1));
 }
Ejemplo n.º 4
0
 public static bool set_int32_be(LuaBytes bytes, int offset, uint value)
 {
     return bytes.SetBigInt32(value, offset - 1);
 }