summaryrefslogtreecommitdiff
path: root/macosx/ARCBridge.h
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-06-22 19:55:35 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-06-22 19:55:35 +0000
commitb6b2beab4846d5579514aed399d7eab56d6d02f0 (patch)
tree86be926c6a96344e7911486ed02ba1749bcaae10 /macosx/ARCBridge.h
parent33fb691cf7b6440102337966e34558f0a1851028 (diff)
downloadpcsxr-b6b2beab4846d5579514aed399d7eab56d6d02f0.tar.gz
Ignore files passed via the command line if we're parsing.
Calls to GUI functions should happen on the main thread. Put the [NSApp presentError:] in a block to the main thread. Put some bools in PcsxrController inside a struct with a size of 1. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@85488 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/ARCBridge.h')
-rw-r--r--macosx/ARCBridge.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/macosx/ARCBridge.h b/macosx/ARCBridge.h
index 5a747bdd..ea274b84 100644
--- a/macosx/ARCBridge.h
+++ b/macosx/ARCBridge.h
@@ -14,6 +14,7 @@
#define SUPERDEALLOC
#define RELEASEOBJ(obj)
#define RETAINOBJ(obj) obj
+#define RETAINOBJNORETURN(obj)
#define AUTORELEASEOBJ(obj) obj
#define AUTORELEASEOBJNORETURN(obj)
#define BRIDGE(toType, obj) (__bridge toType)(obj)
@@ -24,6 +25,7 @@
#define SUPERDEALLOC [super dealloc]
#define RELEASEOBJ(obj) [obj release]
#define RETAINOBJ(obj) [obj retain]
+#define RETAINOBJNORETURN(obj) [obj retain]
#define AUTORELEASEOBJ(obj) [obj autorelease]
#define AUTORELEASEOBJNORETURN(obj) [obj autorelease]
#define BRIDGE(toType, obj) (toType)obj