Updated everything to alpha3.1.

This commit is contained in:
Pietro Gagliardi 2016-06-05 18:11:26 -04:00
parent 80e7d83b77
commit bcef740473
10 changed files with 9 additions and 2 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
libui_windows_386.a Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
libui_windows_amd64.a Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

11
ui.h
View File

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