2016-09-15 09:15:30 +01:00
|
|
|
//
|
|
|
|
// main.h
|
|
|
|
// Installer
|
|
|
|
//
|
|
|
|
// Created by Patrick Wardle on 9/14/16.
|
|
|
|
// Copyright © 2016 Objective-See. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef main_h
|
|
|
|
#define main_h
|
|
|
|
|
|
|
|
#import "Consts.h"
|
|
|
|
#import "Logging.h"
|
|
|
|
#import "Configure.h"
|
|
|
|
|
|
|
|
#import <syslog.h>
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
/* FUNCTION DECLARATIONS */
|
|
|
|
|
|
|
|
//spawn self as root
|
|
|
|
BOOL spawnAsRoot(const char* path2Self);
|
|
|
|
|
2016-11-14 19:12:19 +00:00
|
|
|
//install
|
|
|
|
BOOL cmdlineInstall();
|
|
|
|
|
|
|
|
//uninstall
|
|
|
|
BOOL cmdlineUninstall();
|
|
|
|
|
2016-09-15 09:15:30 +01:00
|
|
|
#endif /* main_h */
|