Files
BlockBlock/Shared/XPCUserProto.h
T
Patrick Wardle 57ca40fc7f initial checkin
BlockBlock v1.0 (beta)
2020-04-10 21:09:09 -10:00

25 lines
439 B
Objective-C
Executable File

//
// file: XPCUserProtocol
// project: BlockBlock (shared)
// description: protocol for talking to the user (header)
//
// created by Patrick Wardle
// copyright (c) 2020 Objective-See. All rights reserved.
//
@import Foundation;
@class Event;
@protocol XPCUserProtocol
//show an alert
-(void)alertShow:(NSDictionary*)alert;
//TODO: add if we want to get fancy
//rules changed
//-(void)rulesChanged:(NSDictionary*)rules;
@end