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:
Scott Stone 2014-09-29 02:00:23 +00:00
parent fdf187ba4d
commit b52a88cc03
10 changed files with 11 additions and 22 deletions

View File

@ -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)

View File

@ -12,7 +12,7 @@
#include "rendfont.h"
#include "rendutil.h"
#include "emuopts.h"
#include "zlib.h"
#include <zlib.h>
#include "uismall.fh"

View File

@ -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"

View File

@ -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"

View File

@ -9,7 +9,7 @@
***************************************************************************/
#include "hashing.h"
#include "zlib.h"
#include <zlib.h>
//**************************************************************************

View File

@ -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"

View File

@ -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"

View File

@ -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 > $@

View File

@ -6,7 +6,7 @@
//
//============================================================
#include "windows.h"
#include <windows.h>
#include "mamevers.rc"
1 24 MOVEABLE PURE "mame.man"

View File

@ -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"