]> git.saurik.com Git - veency.git/commitdiff
Use BOOL type in IOMobileFramebufferIsMainDisplay.
authorJay Freeman (saurik) <saurik@saurik.com>
Mon, 10 Nov 2014 16:02:49 +0000 (08:02 -0800)
committerJay Freeman (saurik) <saurik@saurik.com>
Mon, 10 Nov 2014 16:02:49 +0000 (08:02 -0800)
Tweak.mm

index 30a592f92570d47b5e454ea3f4e6ea01a4895230..406b284e4b07cb2e9fa9b1f4d8e5c52aba6d2732 100644 (file)
--- a/Tweak.mm
+++ b/Tweak.mm
@@ -164,7 +164,7 @@ extern "C" kern_return_t IOMobileFramebufferSwapSetLayer(
 );
 
 extern "C" void IOMobileFramebufferGetDisplaySize(IOMobileFramebufferRef connect, CGSize *size);
-extern "C" void IOMobileFramebufferIsMainDisplay(IOMobileFramebufferRef connect, int *main);
+void (*$IOMobileFramebufferIsMainDisplay)(IOMobileFramebufferRef, BOOL *);
 
 extern "C" {
     IOHIDEventRef IOHIDEventCreateKeyboardEvent(CFAllocatorRef allocator, uint64_t time, uint16_t page, uint16_t usage, Boolean down, IOHIDEventOptionBits flags);
@@ -976,7 +976,6 @@ static void VNCNotifyEnabled(
     VNCEnabled();
 }
 
-void (*$IOMobileFramebufferIsMainDisplay)(IOMobileFramebufferRef, int *);
 
 static IOMobileFramebufferRef main_;
 static IOSurfaceRef layer_;
@@ -1041,7 +1040,7 @@ MSHook(kern_return_t, IOMobileFramebufferSwapSetLayer,
     CGRect frame,
     int flags
 ) {
-    int main(false);
+    BOOL main;
 
     if (_unlikely(buffer == NULL))
         main = fb == main_;