summaryrefslogtreecommitdiff
path: root/src/port.h
diff options
context:
space:
mode:
authortwinaphex2016-08-06 01:04:54 +0200
committertwinaphex2016-08-06 01:04:54 +0200
commit70d12639317897cfb59406e53b4aaac0ee4b1c9c (patch)
treef4552d90f85829554164f17e8b44c4ed6c4aae65 /src/port.h
parent40d5ca75edb4b908cc70b77901f63e43d48cf24b (diff)
downloadsnes9x2002-70d12639317897cfb59406e53b4aaac0ee4b1c9c.tar.gz
snes9x2002-70d12639317897cfb59406e53b4aaac0ee4b1c9c.tar.bz2
snes9x2002-70d12639317897cfb59406e53b4aaac0ee4b1c9c.zip
Put this ifdef around these problematic functions
Diffstat (limited to 'src/port.h')
-rw-r--r--src/port.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/port.h b/src/port.h
index 3c7a2ce..6f2180c 100644
--- a/src/port.h
+++ b/src/port.h
@@ -130,10 +130,13 @@ typedef short int16_32;
EXTERN_C void S9xGenerateSound();
+#ifndef _MSC_VER
void _makepath(char* path, const char* drive, const char* dir,
const char* fname, const char* ext);
void _splitpath(const char* path, char* drive, char* dir, char* fname,
char* ext);
+#endif
+
#define strcasecmp strcmp
#define strncasecmp strncmp