Ruby 4.1.0dev (2026-05-17 revision 716be73e1cde5a6456d348987d37da74bbee2c36)
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