1
0
Fork 0
forked from len0rd/rockbox

winsim: Build fixes for current mingw64 cross compiles

Change-Id: I5d523a4aa0ca9044b8f83ae6aafd4f3705ff96d6
This commit is contained in:
Solomon Peachy 2025-05-25 07:55:10 -04:00
parent 667d6c140b
commit adb49159ce
3 changed files with 3 additions and 1 deletions

View file

@ -145,7 +145,7 @@ typedef unsigned short int UWORD;
#if defined(_LP64) || defined(__LP64__) || defined(__arch64__) || defined(__alpha) || defined(__x86_64) || defined(__powerpc64__)
/* 64 bit architectures: */
typedef signed int SLONG;
#if !defined(_MIKMOD_AMIGA)
#if !defined(_MIKMOD_AMIGA) && !defined(WIN32)
typedef unsigned int ULONG;
#endif

View file

@ -21,6 +21,7 @@
#include <math.h>
#include <stdlib.h> /* EXIT_SUCCESS */
#include <stdio.h>
#include "sim-ui-defines.h"
#ifdef HAVE_REMOTE_LCD
#include "lcd-remote.h"

View file

@ -22,6 +22,7 @@
#include <SDL.h>
#include <SDL_thread.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <inttypes.h>
#ifdef __unix__