Example #1
0
 static public int get_cRead(IntPtr l)
 {
     try {
         ShortMessageBaseInfo self = (ShortMessageBaseInfo)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.cRead);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #2
0
 static public int constructor(IntPtr l)
 {
     try {
         ShortMessageBaseInfo o;
         o = new ShortMessageBaseInfo();
         pushValue(l, true);
         pushValue(l, o);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #3
0
 static public int set_cRead(IntPtr l)
 {
     try {
         ShortMessageBaseInfo self = (ShortMessageBaseInfo)checkSelf(l);
         System.Byte          v;
         checkType(l, 2, out v);
         self.cRead = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #4
0
 static public int set_stSendTime(IntPtr l)
 {
     try {
         ShortMessageBaseInfo      self = (ShortMessageBaseInfo)checkSelf(l);
         Groot.Network.SysTimeData v;
         checkType(l, 2, out v);
         self.stSendTime = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }