mirror of
https://github.com/libretro/RetroArch
synced 2025-03-06 04:13:52 +00:00
(MSVC 2017) Buildfix
This commit is contained in:
parent
53d07b30cc
commit
e14fc1b087
@ -18,6 +18,10 @@
|
||||
#define HAVE_COMPRESSION 1
|
||||
#endif
|
||||
|
||||
#if defined(_WIN32) && !defined(_XBOX)
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#endif
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#include <string.h>
|
||||
#include <compat/posix_string.h>
|
||||
|
@ -1286,8 +1286,8 @@ static JSON_Status JSON_CALL JSON_Writer_WriteSpace_NULL(JSON_Writer writer, siz
|
||||
return JSON_Success;
|
||||
}
|
||||
|
||||
static JSON_Status JSON_CALL (*json_write_new_line)(JSON_Writer writer) = JSON_Writer_WriteNewLine;
|
||||
static JSON_Status JSON_CALL (*json_write_space)(JSON_Writer writer, size_t numberOfSpaces) = JSON_Writer_WriteSpace;
|
||||
static JSON_Status (JSON_CALL *json_write_new_line)(JSON_Writer writer) = JSON_Writer_WriteNewLine;
|
||||
static JSON_Status (JSON_CALL *json_write_space)(JSON_Writer writer, size_t numberOfSpaces) = JSON_Writer_WriteSpace;
|
||||
|
||||
void playlist_write_file(
|
||||
playlist_t *playlist,
|
||||
|
Loading…
x
Reference in New Issue
Block a user