4#include "../Foundation/Memory.h"
5#include "../Foundation/PrimitiveTypes.h"
12#if SC_COMPILER_MSVC || SC_COMPILER_CLANG_CL
13#define SC_PLUGIN_EXPORT __declspec(dllexport)
15#define SC_PLUGIN_EXPORT __attribute__((visibility("default")))
19#define SC_PLUGIN_LINKER_OPERATORS \
20 void* operator new(SC::size_t len) \
22 return SC::Memory::allocate(len, 8); \
24 void* operator new[](SC::size_t len) \
26 return SC::Memory::allocate(len, 8); \
28 void operator delete(void* p, SC::size_t) noexcept \
32 SC::Memory::release(p); \
35 void operator delete(void* p) noexcept \
39 SC::Memory::release(p); \
44#define SC_PLUGIN_LINKER_DEFINITIONS \
45 SC_PLUGIN_LINKER_OPERATORS \
46 extern "C" void __CxxFrameHandler4() \
49 extern "C" void __CxxFrameHandler3() \
52 int __stdcall DllMain(void*, unsigned int, void*) \
56 extern "C" int _fltused = 0;
62#define SC_PLUGIN_LINKER_DEFINITIONS \
63 SC_PLUGIN_LINKER_OPERATORS \
64 extern "C" void bzero(void* s, SC::size_t n) \
66 unsigned char* p = reinterpret_cast<unsigned char*>(s); \
72 extern "C" int memcmp(const void* s1, const void* s2, SC::size_t n) \
74 const unsigned char* p1 = reinterpret_cast<const unsigned char*>(s1); \
75 const unsigned char* p2 = reinterpret_cast<const unsigned char*>(s2); \
89 extern "C" int __cxa_guard_acquire(SC::uint64_t* guard_object) \
91 if (*reinterpret_cast<const SC::uint8_t*>(guard_object) != 0) \
95 extern "C" void __cxa_guard_release(SC::uint64_t* guard_object) \
97 *reinterpret_cast<SC::uint8_t*>(guard_object) = 1; \
102#define SC_PLUGIN_LINKER_DEFINITIONS
108#define SC_PLUGIN_DEFINE(PluginName) \
109 SC_PLUGIN_LINKER_DEFINITIONS \
110 extern "C" SC_PLUGIN_EXPORT bool PluginName##Init(PluginName*& instance) \
112 instance = new PluginName(); \
113 return instance->init(); \
116 extern "C" SC_PLUGIN_EXPORT bool PluginName##Close(PluginName* instance) \
118 auto res = instance->close(); \
123#define SC_PLUGIN_EXPORT_INTERFACES(PluginName, ...) \
124 extern "C" SC_PLUGIN_EXPORT bool PluginName##QueryInterface(PluginName* plugin, SC::uint32_t hash, \
125 void** pluginInterface) \
127 return SC::PluginCastInterface<PluginName, __VA_ARGS__>()(plugin, hash, pluginInterface); \
132template <
typename PluginClass,
typename... InterfaceClasses>
135template <
typename PluginClass>
138 bool operator()(PluginClass*,
uint32_t,
void**) {
return false; }
141template <
typename PluginClass,
typename InterfaceClass,
typename... InterfaceClasses>
144 bool operator()(PluginClass* plugin,
uint32_t hash,
void** pluginInterface)
146 if (hash == InterfaceClass::InterfaceHash)
148 *pluginInterface =
static_cast<InterfaceClass*
>(plugin);
151 return PluginCastInterface<PluginClass, InterfaceClasses...>()(plugin, hash, pluginInterface);
unsigned int uint32_t
Platform independent (4) bytes unsigned int.
Definition: PrimitiveTypes.h:38
Definition: PluginMacros.h:133