예제 #1
0
 static public int get_m_received_mails(IntPtr l)
 {
     try {
         EMailSystem self = (EMailSystem)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.m_received_mails);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
예제 #2
0
 static public int SendMessageGetSentAll(IntPtr l)
 {
     try {
         EMailSystem self = (EMailSystem)checkSelf(l);
         self.SendMessageGetSentAll();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
예제 #3
0
 static public int constructor(IntPtr l)
 {
     try {
         EMailSystem o;
         o = new EMailSystem();
         pushValue(l, true);
         pushValue(l, o);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
예제 #4
0
 static public int set_m_received_mails(IntPtr l)
 {
     try {
         EMailSystem self = (EMailSystem)checkSelf(l);
         System.Collections.Generic.List <ShortMessageBaseInfo> v;
         checkType(l, 2, out v);
         self.m_received_mails = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
예제 #5
0
 static public int GetEmailCount(IntPtr l)
 {
     try {
         EMailSystem  self = (EMailSystem)checkSelf(l);
         System.Int32 a1;
         checkType(l, 2, out a1);
         var ret = self.GetEmailCount(a1);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }