Ruby 4.1.0dev (2026-03-22 revision 251fd7a11e442c34c1b60908409e5611f69ef858)
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