[Project64] get headers to be full path

This commit is contained in:
zilmar 2016-01-13 22:15:30 +11:00
parent 01c1cf72c4
commit 51cc15687d
32 changed files with 42 additions and 43 deletions

View File

@ -9,7 +9,7 @@
* *
****************************************************************************/
#include "stdafx.h"
#include "Audio.h"
#include <Project64-core/N64System/Mips/Audio.h>
#include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/N64System/N64Class.h>

View File

@ -9,7 +9,7 @@
* *
****************************************************************************/
#include "stdafx.h"
#include "Dma.h"
#include <Project64-core/N64System/Mips/Dma.h>
#include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/N64System/N64RomClass.h>
#include <Project64-core/N64System/Mips/MemoryVirtualMem.h>

View File

@ -9,7 +9,7 @@
* *
****************************************************************************/
#include "stdafx.h"
#include "Eeprom.h"
#include <Project64-core/N64System/Mips/Eeprom.h>
#include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/N64System/N64Class.h>
#include <time.h>

View File

@ -9,7 +9,7 @@
* *
****************************************************************************/
#include "stdafx.h"
#include "FlashRam.h"
#include <Project64-core/N64System/Mips/FlashRam.h>
#include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/N64System/Mips/MemoryVirtualMem.h>
#include <Common/path.h>

View File

@ -9,7 +9,7 @@
* *
****************************************************************************/
#include "stdafx.h"
#include "MemoryVirtualMem.h"
#include <Project64-core/N64System/Mips/MemoryVirtualMem.h>
#include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/N64System/N64RomClass.h>
#include <Project64-core/N64System/N64Class.h>

View File

@ -9,7 +9,7 @@
* *
****************************************************************************/
#pragma once
#include "MemoryVirtualMem.h"
#include <Project64-core/N64System/Mips/MemoryVirtualMem.h>
#include "TranslateVaddr.h"
#include <Project64-core/N64System/Recompiler/RecompilerOps.h>
#include <Project64-core/N64System/Interpreter/InterpreterOps.h>

View File

@ -11,7 +11,7 @@
#include "stdafx.h"
#include <stdio.h>
#include "OpCode.h"
#include "RegisterClass.h"
#include <Project64-core/N64System/Mips/RegisterClass.h>
#define FPR_Type(Reg) (Reg) == R4300i_COP1_S ? "S" : (Reg) == R4300i_COP1_D ? "D" :\
(Reg) == R4300i_COP1_W ? "W" : "L"

View File

@ -11,8 +11,8 @@
#include "stdafx.h"
#include <stdio.h>
#include <string.h>
#include "PifRam.h"
#include <Project64-core/N64System/Mips/PifRam.h>
#include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/Plugins/ControllerPlugin.h>
#include <Project64-core/N64System/Mips/RegisterClass.h>

View File

@ -11,7 +11,7 @@
#pragma once
#include <Project64-core/Logging.h>
#include "Eeprom.h"
#include <Project64-core/N64System/Mips/Eeprom.h>
class CPifRamSettings
{

View File

@ -10,8 +10,7 @@
****************************************************************************/
#include "stdafx.h"
#include <string.h>
#include "RegisterClass.h"
#include <Project64-core/N64System/Mips/RegisterClass.h>
#include <Project64-core/N64System/N64Class.h>
#include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/Logging.h>

View File

@ -10,6 +10,7 @@
****************************************************************************/
#pragma once
#include <Common/Platform.h>
#include <Project64-core/N64System/N64Types.h>
#include <Project64-core/Settings/DebugSettings.h>
#include <Project64-core/Settings/GameSettings.h>

View File

@ -1,4 +1,3 @@
SysEvent_ChangingFullScreen
/****************************************************************************
* *
* Project64 - A Nintendo 64 emulator. *
@ -10,7 +9,7 @@ SysEvent_ChangingFullScreen
* *
****************************************************************************/
#include "stdafx.h"
#include "SystemEvents.h"
#include <Project64-core/N64System/Mips/SystemEvents.h>
#include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/N64System/N64Class.h>

View File

@ -9,7 +9,7 @@
* *
****************************************************************************/
#include "stdafx.h"
#include "SystemTiming.h"
#include <Project64-core/N64System/Mips/SystemTiming.h>
#include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/N64System/Mips/RegisterClass.h>
#include <Project64-core/N64System/N64Class.h>

View File

@ -11,7 +11,7 @@
#pragma once
#include <Common/LogClass.h>
#include "RegisterClass.h"
#include <Project64-core/N64System/Mips/RegisterClass.h>
class CDebugTlb;

View File

@ -11,7 +11,7 @@
#include "stdafx.h"
#include "TLBClass.h"
#include <Project64-core/N64System/SystemGlobals.h>
#include "RegisterClass.h"
#include <Project64-core/N64System/Mips/RegisterClass.h>
CTLB::CTLB(CTLB_CB * CallBack) :
m_CB(CallBack)

View File

@ -14,16 +14,15 @@
#include <Project64-core/Settings/N64SystemSettings.h>
#include <Project64-core/N64System/ProfilingClass.h>
#include <Project64-core/N64System/Recompiler/RecompilerClass.h>
#include <Project64-core/N64System/Mips/Audio.h>
#include <Project64-core/N64System/Mips/MemoryVirtualMem.h>
#include <Project64-core/N64System/Mips/SystemEvents.h>
#include <Project64-core/N64System/Mips/SystemTiming.h>
#include <Project64-core/Settings/DebugSettings.h>
#include <Project64-core/Plugin.h>
#include <Project64-core/Logging.h>
#include "Mips/SystemEvents.h"
#include "Mips/MemoryVirtualMem.h"
#include "Mips/TLBClass.h"
#include "Mips/Audio.h"
#include "Mips/SystemTiming.h"
#include "CheatClass.h"
#include "FramePerSecondClass.h"
#include "SpeedLimiterClass.h"

View File

@ -10,9 +10,8 @@
****************************************************************************/
#include "stdafx.h"
#include <string.h>
#include "CodeBlock.h"
#include <Project64-core/N64System/Recompiler/CodeBlock.h>
#include "x86CodeLog.h"
#include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/N64System/Mips/TranslateVaddr.h>
#include <Project64-core/N64System/N64Class.h>

View File

@ -10,9 +10,9 @@
****************************************************************************/
#pragma once
#include <Common/md5.h>
#include "RecompilerOps.h"
#include "ExitInfo.h"
#include "CodeSection.h"
#include <Project64-core/N64System/Recompiler/RecompilerOps.h>
#include <Project64-core/N64System/Recompiler/ExitInfo.h>
#include <Project64-core/N64System/Recompiler/CodeSection.h>
class CCodeBlock :
private CRecompilerOps

View File

@ -9,7 +9,7 @@
* *
****************************************************************************/
#include "stdafx.h"
#include "CodeSection.h"
#include <Project64-core/N64System/Recompiler/CodeSection.h>
#include <Project64-core/N64System/Mips/OpCode.h>
#include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/N64System/Mips/MemoryVirtualMem.h>
@ -19,6 +19,7 @@
#include <Project64-core/N64System/Interpreter/InterpreterCPU.h>
#include <Project64-core/N64System/Recompiler/LoopAnalysis.h>
#include <Project64-core/N64System/Recompiler/SectionInfo.h>
#include <Project64-core/ExceptionHandler.h>
#include <Windows.h>
void InPermLoop();

View File

@ -9,7 +9,7 @@
* *
****************************************************************************/
#include "stdafx.h"
#include "FunctionInfo.h"
#include <Project64-core/N64System/Recompiler/FunctionInfo.h>
CCompiledFunc::CCompiledFunc( const CCodeBlock & CodeBlock ) :
m_EnterPC(CodeBlock.VAddrEnter()),

View File

@ -9,7 +9,7 @@
* *
****************************************************************************/
#pragma once
#include "CodeBlock.h"
#include <Project64-core/N64System/Recompiler/CodeBlock.h>
class CCompiledFunc
{

View File

@ -9,7 +9,7 @@
* *
****************************************************************************/
#include "stdafx.h"
#include "FunctionMapClass.h"
#include <Project64-core/N64System/Recompiler/FunctionMapClass.h>
#include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/N64System/N64Class.h>
#include <Windows.h>

View File

@ -9,7 +9,7 @@
* *
****************************************************************************/
#pragma once
#include "FunctionInfo.h"
#include <Project64-core/N64System/Recompiler/FunctionInfo.h>
class CFunctionMap
{

View File

@ -9,7 +9,7 @@
* *
****************************************************************************/
#pragma once
#include "ExitInfo.h"
#include <Project64-core/N64System/Recompiler/ExitInfo.h>
struct CJumpInfo
{

View File

@ -9,11 +9,12 @@
* *
****************************************************************************/
#include "stdafx.h"
#include "RecompilerClass.h"
#include <Project64-core/N64System/Recompiler/RecompilerClass.h>
#include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/N64System/Recompiler/x86CodeLog.h>
#include <Project64-core/N64System/N64Class.h>
#include <Project64-core/N64System/Interpreter/InterpreterCPU.h>
#include <Project64-core/ExceptionHandler.h>
#include <Objbase.h>
CRecompiler::CRecompiler(CRegisters & Registers, CProfiling & Profile, bool & EndEmulation) :

View File

@ -11,8 +11,8 @@
#pragma once
#include <Project64-core/Settings/RecompilerSettings.h>
#include <Project64-core/N64System/Recompiler/FunctionMapClass.h>
#include <Project64-core/N64System/Recompiler/RecompilerMemory.h>
#include <Project64-core/N64System/ProfilingClass.h>
#include "RecompilerMemory.h"
class CRecompiler :
protected CDebugSettings,

View File

@ -9,9 +9,10 @@
* *
****************************************************************************/
#include "stdafx.h"
#include "RecompilerMemory.h"
#include <Project64-core/N64System/Recompiler/RecompilerMemory.h>
#include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/N64System/Recompiler/RecompilerClass.h>
#include <Common/MemoryManagement.h>
#include <Windows.h>
CRecompMemory::CRecompMemory() :

View File

@ -9,7 +9,7 @@
* *
****************************************************************************/
#pragma once
#include "X86ops.h"
#include <Project64-core/N64System/Recompiler/X86ops.h>
class CRecompMemory :
protected CX86Ops

View File

@ -14,12 +14,11 @@
#include <Project64-core/N64System/Mips/MemoryVirtualMem.h>
#include <Project64-core/N64System/Interpreter/InterpreterOps.h>
#include <Project64-core/N64System/Interpreter/InterpreterCPU.h>
#include <Project64-core/N64System/Recompiler/RecompilerClass.h>
#include <Project64-core/N64System/Recompiler/CodeSection.h>
#include <Project64-core/N64System/Recompiler/RecompilerOps.h>
#include <Project64-core/N64System/N64Class.h>
#include <stdio.h>
#include "RecompilerClass.h"
#include "RecompilerOps.h"
#include "CodeSection.h"
#include "x86CodeLog.h"
CCodeSection * CRecompilerOps::m_Section = NULL;

View File

@ -13,10 +13,10 @@
#include <Project64-core/N64System/Mips/RegisterClass.h>
#include <Project64-core/N64System/Mips/OpCode.h>
#include <Project64-core/N64System/Recompiler/RegInfo.h>
#include <Project64-core/N64System/Recompiler/X86ops.h>
#include <Project64-core/Settings/DebugSettings.h>
#include <Project64-core/Settings/N64SystemSettings.h>
#include <Project64-core/Settings/RecompilerSettings.h>
#include "X86ops.h"
class CCodeSection;

View File

@ -11,11 +11,11 @@
#include "stdafx.h"
#include <Project64-core/N64System/SystemGlobals.h>
#include <Project64-core/N64System/N64Class.h>
#include <Project64-core/N64System/Recompiler/RecompilerClass.h>
#include <Project64-core/N64System/Recompiler/RegInfo.h>
#include <stdio.h>
#include <string.h>
#include "RegInfo.h"
#include "RecompilerClass.h"
#include "x86CodeLog.h"
uint32_t CRegInfo::m_fpuControl = 0;

View File

@ -11,7 +11,7 @@
#pragma once
#include <Project64-core/Settings/DebugSettings.h>
#include <Project64-core/N64System/Mips/RegisterClass.h>
#include "X86ops.h"
#include <Project64-core/N64System/Recompiler/X86ops.h>
class CRegInfo :
private CDebugSettings,