summaryrefslogtreecommitdiff
path: root/include/clblast_c.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/clblast_c.h')
-rw-r--r--include/clblast_c.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/clblast_c.h b/include/clblast_c.h
index b92febac..a13b8e64 100644
--- a/include/clblast_c.h
+++ b/include/clblast_c.h
@@ -25,7 +25,11 @@
// Exports library functions under Windows when building a DLL. See also:
// https://msdn.microsoft.com/en-us/library/a90k134d.aspx
#ifdef _WIN32
- #define PUBLIC_API __declspec(dllexport)
+ #ifdef COMPILING_DLL
+ #define PUBLIC_API __declspec(dllexport)
+ #else
+ #define PUBLIC_API __declspec(dllimport)
+ #endif
#else
#define PUBLIC_API
#endif