Added extern and export

This commit is contained in:
Robert Osfield 2016-06-25 16:32:58 +01:00
parent 1204c32430
commit ca0fff8313

View File

@ -18,7 +18,6 @@
#include <string>
#include <vector>
#include <string.h>
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));