From d71b7c55b01de191af50b885eb5bb6e10b12f0e9 Mon Sep 17 00:00:00 2001 From: no Date: Wed, 13 Jan 2016 10:14:20 -0500 Subject: [PATCH 1/8] error: `strcmp' was not declared at this scope. --- Source/Project64-core/AppInit.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Project64-core/AppInit.cpp b/Source/Project64-core/AppInit.cpp index f574d503e..8286fbc59 100644 --- a/Source/Project64-core/AppInit.cpp +++ b/Source/Project64-core/AppInit.cpp @@ -1,7 +1,9 @@ #include "stdafx.h" +#include #include #include #include + #include #include #include From ac7b0d960138b6e3dd4e8382aaa87a60af62fed7 Mon Sep 17 00:00:00 2001 From: no Date: Wed, 13 Jan 2016 10:17:03 -0500 Subject: [PATCH 2/8] error: `strcpy' was not declared at this scope. --- Source/Project64-core/N64System/ProfilingClass.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Project64-core/N64System/ProfilingClass.cpp b/Source/Project64-core/N64System/ProfilingClass.cpp index f32ed7491..3901cc9cf 100644 --- a/Source/Project64-core/N64System/ProfilingClass.cpp +++ b/Source/Project64-core/N64System/ProfilingClass.cpp @@ -9,6 +9,7 @@ * * ****************************************************************************/ #include "stdafx.h" +#include #include #include From ebf3922c51325162a09844c401de926174817eb4 Mon Sep 17 00:00:00 2001 From: no Date: Wed, 13 Jan 2016 10:18:10 -0500 Subject: [PATCH 3/8] `sprintf' was not declared at this scope. --- Source/Project64-core/N64System/ProfilingClass.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Project64-core/N64System/ProfilingClass.cpp b/Source/Project64-core/N64System/ProfilingClass.cpp index 3901cc9cf..95ce553c7 100644 --- a/Source/Project64-core/N64System/ProfilingClass.cpp +++ b/Source/Project64-core/N64System/ProfilingClass.cpp @@ -10,6 +10,8 @@ ****************************************************************************/ #include "stdafx.h" #include +#include + #include #include From 344299d3197be0d0f2ce8b5d9810ff573ead4ff1 Mon Sep 17 00:00:00 2001 From: no Date: Wed, 13 Jan 2016 10:20:05 -0500 Subject: [PATCH 4/8] error: `memset' was not declared at this scope. --- Source/Project64-core/N64System/Mips/Rumblepak.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Project64-core/N64System/Mips/Rumblepak.cpp b/Source/Project64-core/N64System/Mips/Rumblepak.cpp index 45df9e6e1..15c430271 100644 --- a/Source/Project64-core/N64System/Mips/Rumblepak.cpp +++ b/Source/Project64-core/N64System/Mips/Rumblepak.cpp @@ -9,7 +9,9 @@ * * ****************************************************************************/ #include "stdafx.h" +#include #include "Rumblepak.h" + #include #include #include From 2ebf64503ad07fed731ee0a0b2df8ce7019e4651 Mon Sep 17 00:00:00 2001 From: no Date: Wed, 13 Jan 2016 10:21:58 -0500 Subject: [PATCH 5/8] error: `memcpy' was not declared at this scope. --- Source/Project64-core/N64System/Mips/Dma.cpp | 2 ++ Source/Project64-core/N64System/Mips/MemoryVirtualMem.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Source/Project64-core/N64System/Mips/Dma.cpp b/Source/Project64-core/N64System/Mips/Dma.cpp index dc1ffad08..6dcd20f3b 100644 --- a/Source/Project64-core/N64System/Mips/Dma.cpp +++ b/Source/Project64-core/N64System/Mips/Dma.cpp @@ -9,7 +9,9 @@ * * ****************************************************************************/ #include "stdafx.h" +#include #include + #include #include #include diff --git a/Source/Project64-core/N64System/Mips/MemoryVirtualMem.cpp b/Source/Project64-core/N64System/Mips/MemoryVirtualMem.cpp index 5761cf678..cca660967 100644 --- a/Source/Project64-core/N64System/Mips/MemoryVirtualMem.cpp +++ b/Source/Project64-core/N64System/Mips/MemoryVirtualMem.cpp @@ -9,6 +9,8 @@ * * ****************************************************************************/ #include "stdafx.h" +#include + #include #include #include From 4eecbf31392fe1bd9aad68faec792d09588e845d Mon Sep 17 00:00:00 2001 From: no Date: Thu, 14 Jan 2016 01:29:38 -0500 Subject: [PATCH 6/8] moved string.h include to core/stdafx.h --- Source/Project64-core/AppInit.cpp | 2 +- Source/Project64-core/Logging.cpp | 1 - Source/Project64-core/stdafx.h | 2 ++ 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/Project64-core/AppInit.cpp b/Source/Project64-core/AppInit.cpp index 8286fbc59..0b62fdfac 100644 --- a/Source/Project64-core/AppInit.cpp +++ b/Source/Project64-core/AppInit.cpp @@ -1,5 +1,5 @@ #include "stdafx.h" -#include + #include #include #include diff --git a/Source/Project64-core/Logging.cpp b/Source/Project64-core/Logging.cpp index 0c779ff7c..5597f9205 100644 --- a/Source/Project64-core/Logging.cpp +++ b/Source/Project64-core/Logging.cpp @@ -11,7 +11,6 @@ #include "stdafx.h" #include -#include #include #include #include diff --git a/Source/Project64-core/stdafx.h b/Source/Project64-core/stdafx.h index c075f580f..0132152b4 100644 --- a/Source/Project64-core/stdafx.h +++ b/Source/Project64-core/stdafx.h @@ -1,3 +1,5 @@ +#include + #include #include #include From 5b62fdd1012f610dad4e3cc7055ded50c257169e Mon Sep 17 00:00:00 2001 From: no Date: Thu, 14 Jan 2016 01:34:38 -0500 Subject: [PATCH 7/8] ... and from core/N64System/../stdafx.h --- Source/Project64-core/N64System/CheatClass.cpp | 1 - Source/Project64-core/N64System/ProfilingClass.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/Source/Project64-core/N64System/CheatClass.cpp b/Source/Project64-core/N64System/CheatClass.cpp index 26d2d7748..4cd02ef3c 100644 --- a/Source/Project64-core/N64System/CheatClass.cpp +++ b/Source/Project64-core/N64System/CheatClass.cpp @@ -9,7 +9,6 @@ * * ****************************************************************************/ #include "stdafx.h" -#include #include "CheatClass.h" #include diff --git a/Source/Project64-core/N64System/ProfilingClass.cpp b/Source/Project64-core/N64System/ProfilingClass.cpp index 95ce553c7..4042835ad 100644 --- a/Source/Project64-core/N64System/ProfilingClass.cpp +++ b/Source/Project64-core/N64System/ProfilingClass.cpp @@ -9,7 +9,6 @@ * * ****************************************************************************/ #include "stdafx.h" -#include #include #include From bc1405b6af6a7455df5a2a77b41983aabb6f30de Mon Sep 17 00:00:00 2001 From: no Date: Thu, 14 Jan 2016 01:39:16 -0500 Subject: [PATCH 8/8] ... and from core/N64System/Mips/../../stdafx.h --- Source/Project64-core/N64System/Mips/Dma.cpp | 1 - Source/Project64-core/N64System/Mips/MemoryVirtualMem.cpp | 1 - Source/Project64-core/N64System/Mips/PifRam.cpp | 1 - Source/Project64-core/N64System/Mips/RegisterClass.cpp | 1 - Source/Project64-core/N64System/Mips/Rumblepak.cpp | 1 - 5 files changed, 5 deletions(-) diff --git a/Source/Project64-core/N64System/Mips/Dma.cpp b/Source/Project64-core/N64System/Mips/Dma.cpp index 6dcd20f3b..7720e417d 100644 --- a/Source/Project64-core/N64System/Mips/Dma.cpp +++ b/Source/Project64-core/N64System/Mips/Dma.cpp @@ -9,7 +9,6 @@ * * ****************************************************************************/ #include "stdafx.h" -#include #include #include diff --git a/Source/Project64-core/N64System/Mips/MemoryVirtualMem.cpp b/Source/Project64-core/N64System/Mips/MemoryVirtualMem.cpp index cca660967..2493ba114 100644 --- a/Source/Project64-core/N64System/Mips/MemoryVirtualMem.cpp +++ b/Source/Project64-core/N64System/Mips/MemoryVirtualMem.cpp @@ -9,7 +9,6 @@ * * ****************************************************************************/ #include "stdafx.h" -#include #include #include diff --git a/Source/Project64-core/N64System/Mips/PifRam.cpp b/Source/Project64-core/N64System/Mips/PifRam.cpp index 361d706ce..f62165aa3 100644 --- a/Source/Project64-core/N64System/Mips/PifRam.cpp +++ b/Source/Project64-core/N64System/Mips/PifRam.cpp @@ -10,7 +10,6 @@ ****************************************************************************/ #include "stdafx.h" #include -#include #include #include diff --git a/Source/Project64-core/N64System/Mips/RegisterClass.cpp b/Source/Project64-core/N64System/Mips/RegisterClass.cpp index 5b9e9aedf..18657b827 100644 --- a/Source/Project64-core/N64System/Mips/RegisterClass.cpp +++ b/Source/Project64-core/N64System/Mips/RegisterClass.cpp @@ -9,7 +9,6 @@ * * ****************************************************************************/ #include "stdafx.h" -#include #include #include #include diff --git a/Source/Project64-core/N64System/Mips/Rumblepak.cpp b/Source/Project64-core/N64System/Mips/Rumblepak.cpp index 15c430271..f63d69ef1 100644 --- a/Source/Project64-core/N64System/Mips/Rumblepak.cpp +++ b/Source/Project64-core/N64System/Mips/Rumblepak.cpp @@ -9,7 +9,6 @@ * * ****************************************************************************/ #include "stdafx.h" -#include #include "Rumblepak.h" #include