Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blenpluginapi/plugin.h')
-rw-r--r--source/blender/blenpluginapi/plugin.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/source/blender/blenpluginapi/plugin.h b/source/blender/blenpluginapi/plugin.h
index 9d353cc611a..f7ffc7e7c8e 100644
--- a/source/blender/blenpluginapi/plugin.h
+++ b/source/blender/blenpluginapi/plugin.h
@@ -31,6 +31,7 @@
#ifndef PLUGIN_H
#define PLUGIN_H
+#include "externdef.h"
#include "iff.h"
#include "util.h"
#include "floatpatch.h"
@@ -87,14 +88,14 @@ void plugin_getinfo(PluginInfo *);
/* *************** API functions ******************** */
/* derived from the famous Perlin noise */
-extern float hnoise(float noisesize, float x, float y, float z);
+LIBEXPORT float hnoise(float noisesize, float x, float y, float z);
/* the original Perlin noise */
-extern float hnoisep(float noisesize, float x, float y, float z);
+LIBEXPORT float hnoisep(float noisesize, float x, float y, float z);
/* soft turbulence */
-extern float turbulence(float noisesize, float x, float y, float z, int depth);
+LIBEXPORT float turbulence(float noisesize, float x, float y, float z, int depth);
/* hard turbulence */
-extern float turbulence1(float noisesize, float x, float y, float z, int depth);
+LIBEXPORT float turbulence1(float noisesize, float x, float y, float z, int depth);
#endif /* PLUGIN_H */