Merge pull request #840 from cxd4/fix-undeclared-functions
[core] Explicitly ensure that the necessary includes are included.
This commit is contained in:
commit
3a6df25a2c
|
@ -43,6 +43,9 @@ documentation and/or software.
|
|||
|
||||
#include <string>
|
||||
#include <functional>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include "path.h"
|
||||
|
||||
struct MD5Digest
|
||||
|
|
|
@ -10,6 +10,10 @@
|
|||
****************************************************************************/
|
||||
#include "stdafx.h"
|
||||
#include "Logging.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
#include <Common/path.h>
|
||||
#include <Project64-core/N64System/SystemGlobals.h>
|
||||
#include <Project64-core/N64System/Mips/TranslateVaddr.h>
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
* *
|
||||
****************************************************************************/
|
||||
#include "stdafx.h"
|
||||
#include <stdio.h>
|
||||
#include <Common/stdtypes.h>
|
||||
#include <Common/path.h>
|
||||
|
||||
|
|
|
@ -9,8 +9,9 @@
|
|||
* *
|
||||
****************************************************************************/
|
||||
#include "stdafx.h"
|
||||
|
||||
#include <string.h>
|
||||
#include "CheatClass.h"
|
||||
|
||||
#include <Project64-core/Settings/SettingType/SettingsType-Cheats.h>
|
||||
#include <Project64-core/Plugins/GFXPlugin.h>
|
||||
#include <Project64-core/Plugins/AudioPlugin.h>
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
* *
|
||||
****************************************************************************/
|
||||
#include "stdafx.h"
|
||||
#include <stdio.h>
|
||||
#include "OpCode.h"
|
||||
#include "RegisterClass.h"
|
||||
|
||||
|
|
|
@ -9,7 +9,10 @@
|
|||
* *
|
||||
****************************************************************************/
|
||||
#include "stdafx.h"
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include "PifRam.h"
|
||||
|
||||
#include <Project64-core/N64System/SystemGlobals.h>
|
||||
#include <Project64-core/Plugins/ControllerPlugin.h>
|
||||
#include <Project64-core/N64System/Mips/RegisterClass.h>
|
||||
|
|
|
@ -9,7 +9,9 @@
|
|||
* *
|
||||
****************************************************************************/
|
||||
#include "stdafx.h"
|
||||
#include <string.h>
|
||||
#include "RegisterClass.h"
|
||||
|
||||
#include <Project64-core/N64System/N64Class.h>
|
||||
#include <Project64-core/N64System/SystemGlobals.h>
|
||||
#include <Project64-core/Logging.h>
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
****************************************************************************/
|
||||
#pragma once
|
||||
|
||||
#include <Common/stdtypes.h>
|
||||
|
||||
enum PauseType
|
||||
{
|
||||
PauseType_FromMenu,
|
||||
|
|
|
@ -9,8 +9,10 @@
|
|||
* *
|
||||
****************************************************************************/
|
||||
#include "stdafx.h"
|
||||
#include <string.h>
|
||||
#include "CodeBlock.h"
|
||||
#include "x86CodeLog.h"
|
||||
|
||||
#include <Project64-core/N64System/SystemGlobals.h>
|
||||
#include <Project64-core/N64System/Mips/TranslateVaddr.h>
|
||||
#include <Project64-core/N64System/N64Class.h>
|
||||
|
|
|
@ -9,7 +9,9 @@
|
|||
* *
|
||||
****************************************************************************/
|
||||
#include "stdafx.h"
|
||||
#include <string.h>
|
||||
#include "LoopAnalysis.h"
|
||||
|
||||
#include <Project64-core/N64System/N64Types.h>
|
||||
#include <Project64-core/N64System/Recompiler/CodeBlock.h>
|
||||
#include <Project64-core/N64System/Recompiler/x86CodeLog.h>
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
#include <Project64-core/N64System/Interpreter/InterpreterOps.h>
|
||||
#include <Project64-core/N64System/Interpreter/InterpreterCPU.h>
|
||||
#include <Project64-core/N64System/N64Class.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include "RecompilerClass.h"
|
||||
#include "RecompilerOps.h"
|
||||
#include "CodeSection.h"
|
||||
|
|
|
@ -11,6 +11,9 @@
|
|||
#include "stdafx.h"
|
||||
#include <Project64-core/N64System/SystemGlobals.h>
|
||||
#include <Project64-core/N64System/N64Class.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include "RegInfo.h"
|
||||
#include "RecompilerClass.h"
|
||||
#include "x86CodeLog.h"
|
||||
|
|
Loading…
Reference in New Issue