mirror of
https://github.com/objective-see/BlockBlock.git
synced 2026-03-22 07:02:39 +00:00
28a88d7e39
improved login item blocking added copy/paste support for windows improved client auth checking (cs flags checks) removed unneeded files improved dropdown menu and added close window support (issue: #2)
24 lines
438 B
Objective-C
Executable File
24 lines
438 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;
|
|
|
|
//remove login item
|
|
-(void)removeLoginItem:(NSURL*)loginItem reply:(void (^)(NSNumber*))reply;
|
|
|
|
@end
|
|
|