summaryrefslogtreecommitdiffstats
path: root/src/suil_internal.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-09-12 17:28:16 +0000
committerDavid Robillard <d@drobilla.net>2012-09-12 17:28:16 +0000
commit5b36db63f3aeb512264b0f38cec2a5a486829fd1 (patch)
tree9faefef9e69fa0abba4e1564dfba51aca6c896b2 /src/suil_internal.h
parentd720a0449435a0e096edf5bce3353a71ff90e066 (diff)
downloadsuil-5b36db63f3aeb512264b0f38cec2a5a486829fd1.tar.gz
suil-5b36db63f3aeb512264b0f38cec2a5a486829fd1.tar.bz2
suil-5b36db63f3aeb512264b0f38cec2a5a486829fd1.zip
Fix module loading in static build.
Even when suil itself is built statically, the modules are not, so using SUIL_API for the module entry point (suil_wrapper_new) in this case was not setting dllexport. git-svn-id: http://svn.drobilla.net/lad/trunk/suil@4772 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/suil_internal.h')
-rw-r--r--src/suil_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/suil_internal.h b/src/suil_internal.h
index 62a5ace..4d4bfde 100644
--- a/src/suil_internal.h
+++ b/src/suil_internal.h
@@ -94,7 +94,7 @@ typedef SuilWrapper* (*SuilWrapperNewFunc)(SuilHost* host,
unsigned n_features);
/** Prototype for suil_wrapper_new in each module. */
-SUIL_API
+SUIL_LIB_EXPORT
SuilWrapper*
suil_wrapper_new(SuilHost* host,
const char* host_type_uri,