fix little endian vs big endian in the macros... again... but this time correct
[RRG-proxmark3.git] / client / src / util_darwin.m
bloba22ac54f63852936b67c89173568c14a92b3a952
1 //-----------------------------------------------------------------------------
2 // (c) 2018 AntiCat
3 //
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
6 // the license.
7 //-----------------------------------------------------------------------------
8 // macOS framework bindings
9 //-----------------------------------------------------------------------------
11 #import "util_darwin.h"
13 #import <Foundation/NSString.h>
14 #import <Foundation/NSProcessInfo.h>
15 #import <AppKit/NSApplication.h>
17 static id activity = nil;
19 //OS X Version 10.10 is defined in OS X 10.10 and later
20 #if defined(MAC_OS_X_VERSION_10_10)
21 void disableAppNap(const char* reason) {
22     if(activity == nil) {
23         //NSLog(@"disableAppNap: %@", @(reason));
24         activity = [[NSProcessInfo processInfo] beginActivityWithOptions:NSActivityBackground reason:@(reason)];
25         [activity retain];
26     }
29 void enableAppNap() {
30     if(activity != nil) {
31         //NSLog(@"enableAppNap");
32         [[NSProcessInfo processInfo] endActivity:activity];
33         [activity release];
34         activity = nil;
35     }
38 #else
39 void disableAppNap(const char* reason) { }
40 void enableAppNap() { }
41 #endif
44 //OS X Version 10.6 is defined in OS X 10.6 and later
45 #if defined(MAC_OS_X_VERSION_10_6)
46 void makeUnfocusable() {
47     [NSApp setActivationPolicy:NSApplicationActivationPolicyProhibited];
49 void makeFocusable() {
50     [NSApp setActivationPolicy:NSApplicationActivationPolicyRegular];
52 #else
53 void makeUnfocusable() { }
54 void makeFocusable() { }
55 #endif