Updated everything to alpha3.1.
This commit is contained in:
parent
80e7d83b77
commit
bcef740473
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
11
ui.h
11
ui.h
|
@ -12,8 +12,15 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
// TODO add __declspec(dllimport) on windows
|
||||
#ifndef _UI_EXTERN
|
||||
// this macro is generated by cmake
|
||||
#ifdef libui_EXPORTS
|
||||
#ifdef _WIN32
|
||||
#define _UI_EXTERN __declspec(dllexport) extern
|
||||
#else
|
||||
#define _UI_EXTERN __attribute__((visibility("default"))) extern
|
||||
#endif
|
||||
#else
|
||||
// TODO add __declspec(dllimport) on windows, but only if not static
|
||||
#define _UI_EXTERN extern
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue