Files
KnockKnock/ResultsWindowController.h
T
Patrick Wardle 01c29e7c00 improved launch d&a plugin
-check for 'Program' key first
 -start/calendar interval
added macho parser to classify files as encrypted/packed
fixed bug in signing check (just for ad-hoc, should've bailed if file not signed)
suppress stderr in execTask()
improved sanity checks in various spots
2016-05-31 21:33:58 -10:00

32 lines
552 B
Objective-C
Executable File

//
// PrefsWindowController.h
// KnockKnock
//
// Created by Patrick Wardle on 2/6/15.
// Copyright (c) 2015 Objective-See, LLC. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface ResultsWindowController : NSWindowController <NSWindowDelegate>
{
}
/* PROPERTIES */
//details
@property(nonatomic, retain)NSString* details;
//details of results label/string
@property(weak) IBOutlet NSTextField *detailsLabel;
/* METHODS */
//invoked when user clicks 'more info' button
// ->open KK's webpage
- (IBAction)close:(id)sender;
@end