Windows: Fix wrong calling convention with gcc compiler (issue 1209)

This commit is contained in:
Marshall Greenblatt 2017-05-10 16:26:11 -04:00
parent 13ddc6bf15
commit af831b6bff
1 changed files with 6 additions and 2 deletions

View File

@ -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_