Skip to content

Instantly share code, notes, and snippets.

@OlivierLDff
Created May 22, 2018 17:41
Show Gist options
  • Save OlivierLDff/4fc15eeb75838e6cc4e9545417b461f1 to your computer and use it in GitHub Desktop.
Save OlivierLDff/4fc15eeb75838e6cc4e9545417b461f1 to your computer and use it in GitHub Desktop.
#ifdef WIN32
#ifdef LIB_SHARED // Shared build
#define LIB_API __declspec(dllexport)
#elif LIB_STATIC // No decoration when building staticlly
#define LIB_API
#else // Link to lib
#define LIB_API __declspec(dllimport)
#endif
#else
#define LIB_API
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment