mirror of
https://github.com/objective-see/BlockBlock.git
synced 2026-03-22 07:02:39 +00:00
57ca40fc7f
BlockBlock v1.0 (beta)
25 lines
439 B
Objective-C
Executable File
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
|
|
|