Previous | 199869 Revisions | Next |
r32455 Monday 29th September, 2014 at 02:00:23 UTC by Tafoid |
---|
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) |
[src/emu] | rendfont.c |
[src/emu/netlist/analog] | nld_solver.c |
[src/lib/formats] | csw_cas.c uef_cas.c |
[src/lib/util] | hashing.c |
[src/mess/drivers] | psx.c |
[src/mess/osd/windows] | mess.rc windows.mak |
[src/osd/windows] | mame.rc |
[src/ume/osd/windows] | ume.rc |
r32454 | r32455 | |
---|---|---|
6 | 6 | // |
7 | 7 | //============================================================ |
8 | 8 | |
9 | #include | |
9 | #include <windows.h> | |
10 | 10 | #include "mamevers.rc" |
11 | 11 | |
12 | 12 | 1 24 MOVEABLE PURE "mame.man" |
r32454 | r32455 | |
---|---|---|
36 | 36 | #include "../nl_lists.h" |
37 | 37 | |
38 | 38 | #if HAS_OPENMP |
39 | #include | |
39 | #include <omp.h> | |
40 | 40 | #endif |
41 | 41 | |
42 | 42 | vector_ops_t *vector_ops_t::create_ops(const int size) |
r32454 | r32455 | |
---|---|---|
12 | 12 | #include "rendfont.h" |
13 | 13 | #include "rendutil.h" |
14 | 14 | #include "emuopts.h" |
15 | #include | |
15 | #include <zlib.h> | |
16 | 16 | |
17 | 17 | #include "uismall.fh" |
18 | 18 |
r32454 | r32455 | |
---|---|---|
22 | 22 | |
23 | 23 | #include <string.h> |
24 | 24 | |
25 | #include | |
25 | #include <zlib.h> | |
26 | 26 | #include "uef_cas.h" |
27 | 27 | #include "csw_cas.h" |
28 | 28 |
r32454 | r32455 | |
---|---|---|
13 | 13 | #include <string.h> |
14 | 14 | #include <math.h> |
15 | 15 | |
16 | #include | |
16 | #include <zlib.h> | |
17 | 17 | #include "uef_cas.h" |
18 | 18 | |
19 | 19 |
r32454 | r32455 | |
---|---|---|
9 | 9 | ***************************************************************************/ |
10 | 10 | |
11 | 11 | #include "hashing.h" |
12 | #include | |
12 | #include <zlib.h> | |
13 | 13 | |
14 | 14 | |
15 | 15 | //************************************************************************** |
r32454 | r32455 | |
---|---|---|
7 | 7 | //============================================================ |
8 | 8 | |
9 | 9 | #define NOWINRES |
10 | #include "windows.h" | |
11 | #include "commctrl.h" | |
10 | #include <windows.h> | |
11 | #include <commctrl.h> | |
12 | 12 | #include "umevers.rc" |
13 | 13 | |
14 | 14 | 1 24 MOVEABLE PURE "ume.man" |
r32454 | r32455 | |
---|---|---|
6 | 6 | // |
7 | 7 | //============================================================ |
8 | 8 | |
9 | #include "windows.h" | |
10 | #include "commctrl.h" | |
11 | #include "messvers.rc" | |
9 | #include <windows.h> | |
10 | #include <commctrl.h> | |
12 | 11 | |
13 | 12 | 1 24 MOVEABLE PURE "mess.man" |
14 | 13 |
r32454 | r32455 | |
---|---|---|
29 | 29 | @echo Compiling resources $<... |
30 | 30 | $(RC) $(RCDEFS) $(RCFLAGS) --include-dir $(MESS_WINOBJ) -o $@ -i $< |
31 | 31 | |
32 | ||
33 | #------------------------------------------------- | |
34 | # rules for resource file | |
35 | #------------------------------------------------- | |
36 | ||
37 | $(RESFILE): $(MESS_WINSRC)/mess.rc $(MESS_WINOBJ)/messvers.rc | |
38 | ||
39 | $(MESS_WINOBJ)/messvers.rc: $(BUILDOUT)/verinfo$(BUILD_EXE) $(SRC)/version.c | |
40 | @echo Emitting $@... | |
41 | @"$(BUILDOUT)/verinfo$(BUILD_EXE)" -b mess $(SRC)/version.c > $@ | |
No newline at end of file |
r32454 | r32455 | |
---|---|---|
15 | 15 | #include "imagedev/chd_cd.h" |
16 | 16 | #include "sound/spu.h" |
17 | 17 | #include "debugger.h" |
18 | #include | |
18 | #include <zlib.h> | |
19 | 19 | #include "machine/psxcd.h" |
20 | 20 | #include "machine/psxcport.h" |
21 | 21 |
Previous | 199869 Revisions | Next |