]> git.saurik.com Git - patcyh.git/blame - postrm.mm
For some reason, lsd crashes on iOS 8.3 with this.
[patcyh.git] / postrm.mm
CommitLineData
ec4c25d4
JF
1/* patcyh - you should pronounce it like patch
2 * Copyright (C) 2015 Jay Freeman (saurik)
3*/
4
5/* GNU General Public License, Version 3 {{{ */
6/*
7 * Cydia is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation, either version 3 of the License,
10 * or (at your option) any later version.
11 *
12 * Cydia is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with Cydia. If not, see <http://www.gnu.org/licenses/>.
19**/
20/* }}} */
21
22#include <Foundation/Foundation.h>
23
24#include "patch.hpp"
25
26int main(int argc, const char *argv[]) {
27 if (argc < 2 || (
28 strcmp(argv[1], "abort-install") != 0 &&
29 strcmp(argv[1], "remove") != 0 &&
30 true)) return 0;
31
32 bool abort(strcmp(argv[1], "abort-install") == 0);
33
34 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
35
36 if (!PatchInstall(true, abort))
37 return 1;
c3315f13
JF
38 if (!PatchLaunch(true, abort))
39 return 1;
ec4c25d4
JF
40
41 [pool release];
42 return 0;
43}