Windows: Fix wrong calling convention with gcc compiler (issue 1209)
This commit is contained in:
parent
13ddc6bf15
commit
af831b6bff
|
@ -43,13 +43,17 @@
|
|||
#else
|
||||
#define CEF_EXPORT
|
||||
#endif
|
||||
#define CEF_CALLBACK __stdcall
|
||||
|
||||
#elif defined(COMPILER_GCC)
|
||||
|
||||
#define CEF_EXPORT __attribute__ ((visibility("default")))
|
||||
#define CEF_CALLBACK
|
||||
|
||||
#endif // COMPILER_GCC
|
||||
|
||||
#if defined(OS_WIN)
|
||||
#define CEF_CALLBACK __stdcall
|
||||
#else
|
||||
#define CEF_CALLBACK
|
||||
#endif
|
||||
|
||||
#endif // CEF_INCLUDE_INTERNAL_CEF_EXPORT_H_
|
||||
|
|
Loading…
Reference in New Issue