diff foosdk/sdk/foobar2000/helpers-mac/foobar2000-mac-helpers.h @ 1:20d02a178406 default tip

*: check in everything else yay
author Paper <paper@tflc.us>
date Mon, 05 Jan 2026 02:15:46 -0500
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/foosdk/sdk/foobar2000/helpers-mac/foobar2000-mac-helpers.h	Mon Jan 05 02:15:46 2026 -0500
@@ -0,0 +1,16 @@
+#pragma once
+
+// Mitigation for Objective-C class name clashes
+// Your component must have its own foobar2000-mac-class-suffix.h, with a single line:
+// #define FOOBAR2000_MAC_CLASS_SUFFIX _foo_mycomponentname
+// This suffixes all common class names with _foo_mycomponentname preventing clashes
+
+#include "foobar2000-mac-class-suffix.h"
+
+#ifndef FOOBAR2000_MAC_CLASS_SUFFIX
+#error PLEASE DECLARE FOOBAR2000_MAC_CLASS_SUFFIX PROPERLY
+#endif
+
+#define FB2K_OBJC_CLASS(X) _FB2K_OBJC_CONCAT(X, FOOBAR2000_MAC_CLASS_SUFFIX)
+#define _FB2K_OBJC_CONCAT(a, b) _FB2K_OBJC_CONCAT_INNER(a, b)
+#define _FB2K_OBJC_CONCAT_INNER(a, b) a ## b