Ruby 4.1.0dev (2026-09-28 revision c5994c60fd331f366f34d4b547284153f4ab8b97)
exported.h
Go to the documentation of this file.
1
4#ifndef PRISM_COMPILER_EXPORTED_H
5#define PRISM_COMPILER_EXPORTED_H
6
12#ifndef PRISM_EXPORTED_FUNCTION
13# ifdef PRISM_EXPORT_SYMBOLS
14# ifdef _WIN32
15# define PRISM_EXPORTED_FUNCTION __declspec(dllexport) extern
16# else
17# define PRISM_EXPORTED_FUNCTION __attribute__((__visibility__("default"))) extern
18# endif
19# else
20# define PRISM_EXPORTED_FUNCTION
21# endif
22#endif
23
24#endif