Files
Patrick Wardle 397699c1d0 switched to universal logging
remove old log file #74
switch to os_log_* APIs
2024-03-19 20:12:11 -10:00

26 lines
531 B
Objective-C

//
// file: Update.h
// project: BlockBlock (shared)
// description: checks for new versions of BlockBlock (header)
//
// created by Patrick Wardle
// copyright (c) 2017 Objective-See. All rights reserved.
//
#ifndef Update_h
#define Update_h
@import Cocoa;
@import OSLog;
@import Foundation;
@interface Update : NSObject
//check for an update
// will invoke app delegate method to update UI when check completes
-(void)checkForUpdate:(void (^)(NSUInteger result, NSString* latestVersion))completionHandler;
@end
#endif