static public int constructor(IntPtr l) { try { LBoot.FileUtils o; o = new LBoot.FileUtils(); pushValue(l, o); return(1); } catch (Exception e) { return(error(l, e)); } }
static public int ExtractZipFile(IntPtr l) { try { LBoot.FileUtils self = (LBoot.FileUtils)checkSelf(l); System.String a1; checkType(l, 2, out a1); System.String a2; checkType(l, 3, out a2); System.String a3; checkType(l, 4, out a3); System.String a4; checkType(l, 5, out a4); self.ExtractZipFile(a1, a2, a3, a4); return(0); } catch (Exception e) { return(error(l, e)); } }