summaryrefslogtreecommitdiff
path: root/macosx/plugins/DFSound/macsrc
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-07-05 23:02:13 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-07-05 23:02:13 +0000
commitea22cb43790add304b8b3620e45fe4a8e7b719c2 (patch)
tree3af5a8577ad730cc4ff55c53ef3cd516380a4736 /macosx/plugins/DFSound/macsrc
parentd50bdc6fb2378fc3219e14c47a7b1adc60ee2203 (diff)
downloadpcsxr-ea22cb43790add304b8b3620e45fe4a8e7b719c2.tar.gz
Get rid of the seperate ARCBridge headers.
Set the mime type on the InfoPlist.strings to be text. Why were we using sprintf with NSStrings? NSString does have methods for doing what we need. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@85868 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/plugins/DFSound/macsrc')
-rw-r--r--macosx/plugins/DFSound/macsrc/ARCBridge.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/macosx/plugins/DFSound/macsrc/ARCBridge.h b/macosx/plugins/DFSound/macsrc/ARCBridge.h
deleted file mode 100644
index ea274b84..00000000
--- a/macosx/plugins/DFSound/macsrc/ARCBridge.h
+++ /dev/null
@@ -1,36 +0,0 @@
-//
-// ARCBridge.h
-// PPMacho
-//
-// Created by C.W. Betts on 12/23/12.
-//
-//
-
-#ifndef PPMacho_ARCBridge_h
-#define PPMacho_ARCBridge_h
-
-#if __has_feature(objc_arc)
-
-#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)
-#define __arcweak __weak
-
-#else
-
-#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
-#define __arcweak
-
-#endif
-
-#endif