Previous 199869 Revisions Next

r34105 Monday 29th December, 2014 at 22:23:51 UTC by Wilbert Pol
Move some includes around to fix compile errors on OSX; if this breaks any other environments then feel free to revert this. (nw)
[src/emu]emucore.h
[src/lib/formats]coco_cas.c cpis_dsk.c d88_dsk.c dim_dsk.c dsk_dsk.c imd_dsk.c m20_dsk.c pasti_dsk.c
[src/mame/drivers]ksys573.c
[src/osd/modules/debugger]debugosx.m
[src/tools]nltool.c

trunk/src/emu/emucore.h
r242616r242617
2121#include <stdlib.h>
2222#include <stdarg.h>
2323
24#include <sstream>
25
2426// some cleanups for Solaris for things defined in stdlib.h
2527#ifdef SDLMAME_SOLARIS
2628#undef si_status
trunk/src/lib/formats/coco_cas.c
r242616r242617
3131
3232**************************************************************************/
3333
34#include "emu.h"
3435#include "coco_cas.h"
35#include "emu.h"
3636
3737#define COCO_WAVESAMPLES_HEADER     (1.0)
3838#define COCO_WAVESAMPLES_TRAILER    (1.0)
trunk/src/lib/formats/cpis_dsk.c
r242616r242617
88
99#include <string.h>
1010
11#include "emu.h"
1112#include "formats/cpis_dsk.h"
1213#include "formats/basicdsk.h"
1314
trunk/src/lib/formats/d88_dsk.c
r242616r242617
2727 *
2828 */
2929
30#include "emu.h"
3031#include "flopimg.h"
3132#include "imageutl.h"
3233
trunk/src/lib/formats/dim_dsk.c
r242616r242617
88
99#include <string.h>
1010
11#include "emu.h"
1112#include "dim_dsk.h"
1213#include "basicdsk.h"
1314
trunk/src/lib/formats/dsk_dsk.c
r242616r242617
88
99#include <string.h>
1010
11#include "emu.h"
1112#include "imageutl.h"
1213#include "flopimg.h"
1314
trunk/src/lib/formats/imd_dsk.c
r242616r242617
77*********************************************************************/
88
99#include <string.h>
10#include "emu.h"
1011#include "flopimg.h"
1112
1213struct imddsk_tag
trunk/src/lib/formats/m20_dsk.c
r242616r242617
1414
1515#include <string.h>
1616
17#include "emu.h"
1718#include "m20_dsk.h"
1819#include "basicdsk.h"
1920
trunk/src/lib/formats/pasti_dsk.c
r242616r242617
1#include "emu.h"
12#include "pasti_dsk.h"
2#include "emu.h"
33
44// Pasti format supported using the documentation at
55// http://www.sarnau.info/atari:pasti_file_format
trunk/src/mame/drivers/ksys573.c
r242616r242617
342342
343343  */
344344
345#include "cdrom.h"
346345#include "cpu/psx/psx.h"
347346#include "machine/adc083x.h"
348347#include "machine/ataintf.h"
r242616r242617
361360#include "sound/spu.h"
362361#include "sound/cdda.h"
363362#include "video/psx.h"
363#include "cdrom.h"
364364
365365#define VERBOSE_LEVEL ( 0 )
366366
trunk/src/osd/modules/debugger/debugosx.m
r242616r242617
2222//  * Scroll views with content narrower than clipping area are flaky under Tiger - nothing I can do about this
2323
2424
25// Workaround for Nil being re=defined in luabridge
26#include "emu.h"
27
2528// standard Cocoa headers
2629#include <AvailabilityMacros.h>
2730#import <Cocoa/Cocoa.h>
2831
2932// MAME headers
30#include "emu.h"
33//#include "emu.h"
3134#include "debug/debugvw.h"
3235#include "debug/debugcon.h"
3336#include "debug/debugcpu.h"
trunk/src/tools/nltool.c
r242616r242617
1010#include <stdlib.h>
1111#include <string.h>
1212#include <ctype.h>
13#include <sstream>
1314#include "astring.h"
1415#include "corefile.h"
1516#include "corestr.h"


Previous 199869 Revisions Next


© 1997-2024 The MAME Team