Core: Do some minor header cleanup.
This commit is contained in:
parent
a9706059e0
commit
1f377be17b
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
Copyright (C) 2006 yopyop
|
||||
Copyright (C) 2008-2021 DeSmuME team
|
||||
Copyright (C) 2008-2022 DeSmuME team
|
||||
|
||||
This file is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
@ -26,8 +26,6 @@
|
|||
#include "types.h"
|
||||
#include "ROMReader.h"
|
||||
#include "firmware.h"
|
||||
#include "render3D.h"
|
||||
#include "wifi.h"
|
||||
|
||||
class CFIRMWARE;
|
||||
class EMUFILE;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
Copyright (C) 2007 Guillaume Duhamel
|
||||
Copyright (C) 2007-20017 DeSmuME team
|
||||
Copyright (C) 2007-2022 DeSmuME team
|
||||
|
||||
This file is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
@ -16,6 +16,9 @@
|
|||
along with the this software. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef _ROMREADER_H_
|
||||
#define _ROMREADER_H_
|
||||
|
||||
#ifdef HAVE_LIBZ
|
||||
#include <zlib.h>
|
||||
#endif
|
||||
|
@ -51,3 +54,5 @@ extern ROMReader_struct ZIPROMReader;
|
|||
|
||||
ROMReader_struct * ROMReaderInit(char ** filename);
|
||||
ROMReader_struct * MemROMReaderRead_TrueInit(void* buf, int length);
|
||||
|
||||
#endif // _ROMREADER_H_
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (C) 2009-2021 DeSmuME team
|
||||
Copyright (C) 2009-2022 DeSmuME team
|
||||
|
||||
This file is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
@ -22,6 +22,7 @@
|
|||
#include "mem.h"
|
||||
#include "MMU.h"
|
||||
#include "debug.h"
|
||||
#include "emufile.h"
|
||||
|
||||
#ifndef _MSC_VER
|
||||
#include <stdint.h>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (C) 2017-2021 DeSmuME team
|
||||
Copyright (C) 2017-2022 DeSmuME team
|
||||
|
||||
This file is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
@ -24,6 +24,7 @@
|
|||
#include "../../NDSSystem.h"
|
||||
#include "../../gdbstub.h"
|
||||
#include "../../rtc.h"
|
||||
#include "../../wifi.h"
|
||||
|
||||
#include "ClientAVCaptureObject.h"
|
||||
#include "ClientExecutionControl.h"
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
#include "wifi.h"
|
||||
#include "armcpu.h"
|
||||
#include "NDSSystem.h"
|
||||
#include "emufile.h"
|
||||
#include "debug.h"
|
||||
#include "utils/bits.h"
|
||||
#include "utils/task.h"
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
#include <deque>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include "emufile.h"
|
||||
|
||||
#if defined(__cplusplus) && (__cplusplus < 201103L)
|
||||
#define DESMUME_ENUM(type,name) enum name
|
||||
|
@ -212,6 +211,7 @@
|
|||
|
||||
class WifiHandler;
|
||||
class Task;
|
||||
class EMUFILE;
|
||||
struct slock;
|
||||
typedef slock slock_t;
|
||||
|
||||
|
|
Loading…
Reference in New Issue