(MSVC) Build fixes

This commit is contained in:
twinaphex 2014-10-21 08:02:40 +02:00
parent 8f635757ca
commit bf8cec3d04
6 changed files with 7 additions and 7 deletions

View File

@ -21,7 +21,7 @@
#include <ctype.h> #include <ctype.h>
#include <stdint.h> #include <stdint.h>
#include <boolean.h> #include <boolean.h>
#include "../posix_string.h" #include <compat/posix_string.h>
#ifndef RXML_TEST #ifndef RXML_TEST
#include "../../general.h" #include "../../general.h"

View File

@ -29,7 +29,7 @@
#include "dynamic.h" #include "dynamic.h"
#include "cheats.h" #include "cheats.h"
#include "audio/dsp_filter.h" #include "audio/dsp_filter.h"
#include "compat/strl.h" #include <compat/strl.h>
#include "core_options.h" #include "core_options.h"
#include "core_info.h" #include "core_info.h"
#include "miscellaneous.h" #include "miscellaneous.h"
@ -60,7 +60,7 @@
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#include <windows.h> #include <windows.h>
#endif #endif
#include "compat/msvc_compat.h" #include <compat/posix_string.h>
#endif #endif
/* Wii and PSL1GHT - for usleep (among others) */ /* Wii and PSL1GHT - for usleep (among others) */

View File

@ -34,7 +34,7 @@
#define HAVE_WINDOW #define HAVE_WINDOW
#endif #endif
#include "../../compat/posix_string.h" #include <compat/posix_string.h>
#include "../../performance.h" #include "../../performance.h"
#if defined(HAVE_CG) #if defined(HAVE_CG)

View File

@ -23,7 +23,7 @@
#endif #endif
#if defined(_MSC_VER) #if defined(_MSC_VER)
#include "../compat/msvc_compat.h" #include <compat/posix_string.h>
#endif #endif
/*============================================================ /*============================================================

View File

@ -292,7 +292,7 @@ size_t strlcat(char *dest, const char *source, size_t size)
#include <ctype.h> #include <ctype.h>
#include <stdlib.h> #include <stdlib.h>
#include <stddef.h> #include <stddef.h>
#include "strl.h" #include <compat/strl.h>
#include <string.h> #include <string.h>

View File

@ -25,7 +25,7 @@
#ifdef _WIN32 #ifdef _WIN32
#include "msvc_compat.h" #include <compat/msvc.h>
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {