mirror of
https://github.com/holub/mame
synced 2025-06-05 20:33:45 +03:00
Changing #includes for headers that are part of toolchain and not part of any source/external library. Removal of references to messvers.rc as it does not appear to be used anymore. (nw)
This commit is contained in:
parent
fdf187ba4d
commit
b52a88cc03
@ -36,7 +36,7 @@
|
||||
#include "../nl_lists.h"
|
||||
|
||||
#if HAS_OPENMP
|
||||
#include "omp.h"
|
||||
#include <omp.h>
|
||||
#endif
|
||||
|
||||
vector_ops_t *vector_ops_t::create_ops(const int size)
|
||||
|
@ -12,7 +12,7 @@
|
||||
#include "rendfont.h"
|
||||
#include "rendutil.h"
|
||||
#include "emuopts.h"
|
||||
#include "zlib.h"
|
||||
#include <zlib.h>
|
||||
|
||||
#include "uismall.fh"
|
||||
|
||||
|
@ -22,7 +22,7 @@ Offset Value Type Description
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "zlib.h"
|
||||
#include <zlib.h>
|
||||
#include "uef_cas.h"
|
||||
#include "csw_cas.h"
|
||||
|
||||
|
@ -13,7 +13,7 @@ Not nice, but it works...
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
|
||||
#include "zlib.h"
|
||||
#include <zlib.h>
|
||||
#include "uef_cas.h"
|
||||
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
***************************************************************************/
|
||||
|
||||
#include "hashing.h"
|
||||
#include "zlib.h"
|
||||
#include <zlib.h>
|
||||
|
||||
|
||||
//**************************************************************************
|
||||
|
@ -15,7 +15,7 @@
|
||||
#include "imagedev/chd_cd.h"
|
||||
#include "sound/spu.h"
|
||||
#include "debugger.h"
|
||||
#include "zlib.h"
|
||||
#include <zlib.h>
|
||||
#include "machine/psxcd.h"
|
||||
#include "machine/psxcport.h"
|
||||
|
||||
|
@ -6,9 +6,8 @@
|
||||
//
|
||||
//============================================================
|
||||
|
||||
#include "windows.h"
|
||||
#include "commctrl.h"
|
||||
#include "messvers.rc"
|
||||
#include <windows.h>
|
||||
#include <commctrl.h>
|
||||
|
||||
1 24 MOVEABLE PURE "mess.man"
|
||||
|
||||
|
@ -29,13 +29,3 @@ $(MESS_WINOBJ)/%.res: $(MESS_WINSRC)/%.rc
|
||||
@echo Compiling resources $<...
|
||||
$(RC) $(RCDEFS) $(RCFLAGS) --include-dir $(MESS_WINOBJ) -o $@ -i $<
|
||||
|
||||
|
||||
#-------------------------------------------------
|
||||
# rules for resource file
|
||||
#-------------------------------------------------
|
||||
|
||||
$(RESFILE): $(MESS_WINSRC)/mess.rc $(MESS_WINOBJ)/messvers.rc
|
||||
|
||||
$(MESS_WINOBJ)/messvers.rc: $(BUILDOUT)/verinfo$(BUILD_EXE) $(SRC)/version.c
|
||||
@echo Emitting $@...
|
||||
@"$(BUILDOUT)/verinfo$(BUILD_EXE)" -b mess $(SRC)/version.c > $@
|
@ -6,7 +6,7 @@
|
||||
//
|
||||
//============================================================
|
||||
|
||||
#include "windows.h"
|
||||
#include <windows.h>
|
||||
#include "mamevers.rc"
|
||||
|
||||
1 24 MOVEABLE PURE "mame.man"
|
||||
|
@ -7,8 +7,8 @@
|
||||
//============================================================
|
||||
|
||||
#define NOWINRES
|
||||
#include "windows.h"
|
||||
#include "commctrl.h"
|
||||
#include <windows.h>
|
||||
#include <commctrl.h>
|
||||
#include "umevers.rc"
|
||||
|
||||
1 24 MOVEABLE PURE "ume.man"
|
||||
|
Loading…
Reference in New Issue
Block a user