(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 <stdint.h>
#include <boolean.h>
#include "../posix_string.h"
#include <compat/posix_string.h>
#ifndef RXML_TEST
#include "../../general.h"

View File

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

View File

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

View File

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

View File

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

View File

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