[netcore] Implement Thread.GetCurrentProcessorId (#18450)
[mono-project.git] / mono / metadata / icalls.h
blob4d389a63a5f9c22ca1296b2334cc169de828ec07
1 /**
2 * \file
3 */
5 #ifndef __MONO_METADATA_ICALLS_H__
6 #define __MONO_METADATA_ICALLS_H__
8 #include <mono/utils/mono-publib.h>
10 #ifdef ENABLE_ICALL_EXPORT
11 #define ICALL_EXPORT MONO_API
12 #define ICALL_EXTERN_C G_EXTERN_C
13 #else
14 /* Can't be static as icall.c defines icalls referenced by icall-tables.c */
15 #define ICALL_EXPORT /* nothing */
16 #define ICALL_EXTERN_C /* nothing */
17 #endif
19 #endif // __MONO_METADATA_ICALLS_H__