[host] fix include paths and casing

This commit is contained in:
arcnmx 2017-12-14 14:11:41 -05:00
parent cd54cb179b
commit 524183661d
11 changed files with 28 additions and 27 deletions

View File

@ -17,11 +17,11 @@ this program; if not, write to the Free Software Foundation, Inc., 59 Temple
Place, Suite 330, Boston, MA 02111-1307 USA Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "DXGI.h" #include "Capture/DXGI.h"
using namespace Capture; using namespace Capture;
#include "common\debug.h" #include "common/debug.h"
#include "common\memcpySSE.h" #include "common/memcpySSE.h"
DXGI::DXGI() : DXGI::DXGI() :
m_options(NULL), m_options(NULL),

View File

@ -22,8 +22,8 @@ using namespace Capture;
#include <string> #include <string>
#include "common\debug.h" #include "common/debug.h"
#include "common\memcpySSE.h" #include "common/memcpySSE.h"
#include "Util.h" #include "Util.h"
#ifdef _WIN64 #ifdef _WIN64

View File

@ -21,10 +21,10 @@ Place, Suite 330, Boston, MA 02111-1307 USA
#include "ICapture.h" #include "ICapture.h"
#define W32_LEAN_AND_MEAN #define W32_LEAN_AND_MEAN
#include <Windows.h> #include <windows.h>
#include <NvFBC\nvFBC.h> #include <NvFBC/nvFBC.h>
#include <NvFBC\nvFBCToSys.h> #include <NvFBC/nvFBCToSys.h>
namespace Capture namespace Capture
{ {

View File

@ -20,13 +20,13 @@ Place, Suite 330, Boston, MA 02111-1307 USA
#pragma once #pragma once
#define W32_LEAN_AND_MEAN #define W32_LEAN_AND_MEAN
#include <Windows.h> #include <windows.h>
#include <vector> #include <vector>
#include "common\debug.h" #include "common/debug.h"
#include "ICapture.h" #include "ICapture.h"
#include "Capture\NvFBC.h" #include "Capture/NvFBC.h"
#include "Capture\DXGI.h" #include "Capture/DXGI.h"
class CaptureFactory class CaptureFactory
{ {

View File

@ -18,8 +18,8 @@ Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#pragma once #pragma once
#include <Windows.h> #include <windows.h>
#include <DbgHelp.h> #include <dbghelp.h>
class CrashHandler class CrashHandler
{ {

View File

@ -21,6 +21,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA
#include "common/KVMFR.h" #include "common/KVMFR.h"
#include <vector> #include <vector>
#include <windows.h>
struct CursorInfo struct CursorInfo
{ {

View File

@ -17,12 +17,12 @@ this program; if not, write to the Free Software Foundation, Inc., 59 Temple
Place, Suite 330, Boston, MA 02111-1307 USA Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "ivshmem.h" #include "IVSHMEM.h"
#include <Windows.h> #include <windows.h>
#include <SetupAPI.h> #include <setupapi.h>
#include "vendor\kvm-guest-drivers-windows\ivshmem\Public.h" #include "vendor/kvm-guest-drivers-windows/ivshmem/Public.h"
#include "common\debug.h" #include "common/debug.h"
IVSHMEM * IVSHMEM::m_instance = NULL; IVSHMEM * IVSHMEM::m_instance = NULL;

View File

@ -20,7 +20,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA
#pragma once #pragma once
#define W32_LEAN_AND_MEAN #define W32_LEAN_AND_MEAN
#include <Windows.h> #include <windows.h>
#include <stdbool.h> #include <stdbool.h>
class IVSHMEM class IVSHMEM

View File

@ -20,8 +20,8 @@ Place, Suite 330, Boston, MA 02111-1307 USA
#include "Service.h" #include "Service.h"
#include "IVSHMEM.h" #include "IVSHMEM.h"
#include "common\debug.h" #include "common/debug.h"
#include "common\KVMFR.h" #include "common/KVMFR.h"
#include "CaptureFactory.h" #include "CaptureFactory.h"

View File

@ -20,7 +20,7 @@ Place, Suite 330, Boston, MA 02111-1307 USA
#pragma once #pragma once
#define W32_LEAN_AND_MEAN #define W32_LEAN_AND_MEAN
#include <Windows.h> #include <windows.h>
#include <stdbool.h> #include <stdbool.h>
#include "IVSHMEM.h" #include "IVSHMEM.h"

View File

@ -17,11 +17,11 @@ this program; if not, write to the Free Software Foundation, Inc., 59 Temple
Place, Suite 330, Boston, MA 02111-1307 USA Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include <Windows.h> #include <windows.h>
#include <Shlwapi.h> #include <shlwapi.h>
#include "common\debug.h" #include "common/debug.h"
#include "vendor\getopt\getopt.h" #include "vendor/getopt/getopt.h"
#include "CrashHandler.h" #include "CrashHandler.h"
#include "CaptureFactory.h" #include "CaptureFactory.h"