initial commit

This commit is contained in:
Patrick Wardle
2015-06-13 16:51:34 -10:00
commit e8ce5006bb
144 changed files with 21324 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
//
// PrefsWindowController.h
// DHS
//
// Created by Patrick Wardle on 2/6/15.
// Copyright (c) 2015 Objective-See, LLC. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface RequestRootWindowController : NSWindowController <NSWindowDelegate>
{
}
/* PROPERTIES */
//status msg
@property (weak) IBOutlet NSTextField *statusMsg;
//flag indicating app should exit
@property BOOL shouldExit;
/* METHODS */
//invoked when user clicks 'auth' button
// ->auths user!
-(IBAction)authenticate:(id)sender;
//invoked when user clicks 'cancel' button
// ->exits app
-(IBAction)close:(id)sender;
@end