-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathemulator_export.h
42 lines (34 loc) · 1.03 KB
/
emulator_export.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef EMULATOR_EXPORT_H
#define EMULATOR_EXPORT_H
#ifdef EMULATOR_STATIC_DEFINE
# define EMULATOR_EXPORT
# define EMULATOR_NO_EXPORT
#else
# ifndef EMULATOR_EXPORT
# ifdef emulator_EXPORTS
/* We are building this library */
# define EMULATOR_EXPORT __attribute__((visibility("default")))
# else
/* We are using this library */
# define EMULATOR_EXPORT __attribute__((visibility("default")))
# endif
# endif
# ifndef EMULATOR_NO_EXPORT
# define EMULATOR_NO_EXPORT __attribute__((visibility("hidden")))
# endif
#endif
#ifndef EMULATOR_DEPRECATED
# define EMULATOR_DEPRECATED __attribute__ ((__deprecated__))
#endif
#ifndef EMULATOR_DEPRECATED_EXPORT
# define EMULATOR_DEPRECATED_EXPORT EMULATOR_EXPORT EMULATOR_DEPRECATED
#endif
#ifndef EMULATOR_DEPRECATED_NO_EXPORT
# define EMULATOR_DEPRECATED_NO_EXPORT EMULATOR_NO_EXPORT EMULATOR_DEPRECATED
#endif
#if 0 /* DEFINE_NO_DEPRECATED */
# ifndef EMULATOR_NO_DEPRECATED
# define EMULATOR_NO_DEPRECATED
# endif
#endif
#endif /* EMULATOR_EXPORT_H */