Ruby 4.1.0dev (2026-09-27 revision 25f659ba9f8b541331b56d6959167a4805892a14)
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