summaryrefslogtreecommitdiffstats
path: root/src/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h
index e55e5b52..272e5017 100644
--- a/src/common.h
+++ b/src/common.h
@@ -5,6 +5,7 @@
#pragma warning(disable: 4244) // int to float
#pragma warning(disable: 4800) // int to bool
#pragma warning(disable: 4838) // narrowing conversion
+#pragma warning(disable: 4996) // POSIX names
#include <stdint.h>
#include <math.h>
@@ -61,6 +62,8 @@ extern RsGlobalType &RsGlobal;
#define SCREENW (RsGlobal.maximumWidth)
#define SCREENH (RsGlobal.maximumHeight)
+char *GetUserDirectory(void);
+
struct GlobalScene
{
RpWorld *world;