26ec32c816
- improved output (JSON) - universal build (intel + arm64) - ui updates (icon, dark mode++)
19 lines
389 B
Objective-C
19 lines
389 B
Objective-C
//
|
|
// utilities.h
|
|
// FileMonitor
|
|
//
|
|
// Created by Patrick Wardle on 9/1/19.
|
|
// Copyright © 2020 Objective-See. All rights reserved.
|
|
//
|
|
|
|
#ifndef utilities_h
|
|
#define utilities_h
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <EndpointSecurity/EndpointSecurity.h>
|
|
|
|
//convert es_string_token_t to string
|
|
NSString* convertStringToken(es_string_token_t* stringToken);
|
|
|
|
#endif /* utilities_h */
|