repo.or.cz
/
dolphin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Linux build fix
[dolphin.git]
/
Source
/
PluginSpecs
/
ExportProlog.h
blob
99f5ca30641a0c50a0627bc0b7ae334f1673ad6f
1
#ifdef _WIN32
2
3
#define EXPORT __declspec(dllexport)
4
#define CALL __cdecl
5
6
#else
7
8
#define EXPORT __attribute__ ((visibility(
"default"
)))
9
#define CALL
10
11
#endif
12
13
#if defined(__cplusplus)
14
extern
"C"
{
15
#endif