From ca0fff8313f238b2e478e60598138982a4ee5977 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Sat, 25 Jun 2016 16:32:58 +0100 Subject: [PATCH] Added extern and export --- include/osgDB/FileNameUtils | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/osgDB/FileNameUtils b/include/osgDB/FileNameUtils index da9b11424..42be97a9a 100644 --- a/include/osgDB/FileNameUtils +++ b/include/osgDB/FileNameUtils @@ -18,7 +18,6 @@ #include #include -#include namespace osgDB { @@ -133,7 +132,7 @@ struct FileNameComparator }; -void stringcopy(char* dest, const char* src, size_t length); +extern OSGDB_EXPORT void stringcopy(char* dest, const char* src, size_t length); #define stringcopyfixedsize(DEST, SRC) stringcopy(DEST, SRC, sizeof(DEST));