]> git.saurik.com Git - cydia.git/blobdiff - UICaboodle/UCPlatform.h
When cancelButtonIndex is -1, use the first button's background image for the rest...
[cydia.git] / UICaboodle / UCPlatform.h
index 0940406c62388e30c402e1d55503fc945ec4b9cb..4f2169e4c475b11f2f9b4f0b4efe465c3731ae28 100644 (file)
@@ -43,7 +43,14 @@ while (false)
 #define _label _label_(__LINE__)
 
 #define _packed \
-    __attribute__((packed))
+    __attribute__((__packed__))
+#define _finline \
+    inline __attribute__((__always_inline__))
 
-//#define _finline __attribute__((force_inline))
-#define _finline inline
+#define _assume(e) \
+    _assert(e)
+
+#define _nodefault \
+    default: \
+        _assume(false); \
+        throw;