mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 09:09:52 -06:00
Core: Remove some header inclusions in header files
Replaces them with forward declarations of used types, or removes them entirely if they aren't used at all. This also replaces certain Common headers with less inclusive ones (in terms of definitions they pull in).
This commit is contained in:
@ -7,9 +7,9 @@
|
||||
#include <string>
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "DiscIO/Volume.h"
|
||||
|
||||
class PointerWrap;
|
||||
namespace DiscIO { class IVolume; }
|
||||
namespace MMIO { class Mapping; }
|
||||
|
||||
namespace DVDInterface
|
||||
@ -79,7 +79,7 @@ enum DICommand
|
||||
DVDLowAudioBufferConfig = 0xe4
|
||||
};
|
||||
|
||||
enum DIInterruptType
|
||||
enum DIInterruptType : int
|
||||
{
|
||||
INT_DEINT = 0,
|
||||
INT_TCINT = 1,
|
||||
|
Reference in New Issue
Block a user