OverSight/Installer/main.h

31 lines
456 B
C
Raw Normal View History

//
// 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();
#endif /* main_h */