diff --git a/GUI.sln b/GUI.sln
index 7e2eba0..8f9287d 100644
--- a/GUI.sln
+++ b/GUI.sln
@@ -5,16 +5,40 @@ VisualStudioVersion = 15.0.27703.2042
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GUI", "GUI\GUI.csproj", "{D847D0DC-78F5-4722-8E06-1A124B957353}"
EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "HostInterop", "GUI\HostInterop\HostInterop.vcxproj", "{C3534056-72B3-4651-B69C-6E428F675861}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
+ Debug|x64 = Debug|x64
+ Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
+ Release|x64 = Release|x64
+ Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D847D0DC-78F5-4722-8E06-1A124B957353}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D847D0DC-78F5-4722-8E06-1A124B957353}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {D847D0DC-78F5-4722-8E06-1A124B957353}.Debug|x64.ActiveCfg = Debug|Any CPU
+ {D847D0DC-78F5-4722-8E06-1A124B957353}.Debug|x64.Build.0 = Debug|Any CPU
+ {D847D0DC-78F5-4722-8E06-1A124B957353}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {D847D0DC-78F5-4722-8E06-1A124B957353}.Debug|x86.Build.0 = Debug|Any CPU
{D847D0DC-78F5-4722-8E06-1A124B957353}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D847D0DC-78F5-4722-8E06-1A124B957353}.Release|Any CPU.Build.0 = Release|Any CPU
+ {D847D0DC-78F5-4722-8E06-1A124B957353}.Release|x64.ActiveCfg = Release|Any CPU
+ {D847D0DC-78F5-4722-8E06-1A124B957353}.Release|x64.Build.0 = Release|Any CPU
+ {D847D0DC-78F5-4722-8E06-1A124B957353}.Release|x86.ActiveCfg = Release|Any CPU
+ {D847D0DC-78F5-4722-8E06-1A124B957353}.Release|x86.Build.0 = Release|Any CPU
+ {C3534056-72B3-4651-B69C-6E428F675861}.Debug|Any CPU.ActiveCfg = Debug|Win32
+ {C3534056-72B3-4651-B69C-6E428F675861}.Debug|x64.ActiveCfg = Debug|x64
+ {C3534056-72B3-4651-B69C-6E428F675861}.Debug|x64.Build.0 = Debug|x64
+ {C3534056-72B3-4651-B69C-6E428F675861}.Debug|x86.ActiveCfg = Debug|Win32
+ {C3534056-72B3-4651-B69C-6E428F675861}.Debug|x86.Build.0 = Debug|Win32
+ {C3534056-72B3-4651-B69C-6E428F675861}.Release|Any CPU.ActiveCfg = Release|Win32
+ {C3534056-72B3-4651-B69C-6E428F675861}.Release|x64.ActiveCfg = Release|x64
+ {C3534056-72B3-4651-B69C-6E428F675861}.Release|x64.Build.0 = Release|x64
+ {C3534056-72B3-4651-B69C-6E428F675861}.Release|x86.ActiveCfg = Release|Win32
+ {C3534056-72B3-4651-B69C-6E428F675861}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/GUI/HostInterop/AssemblyInfo.cpp b/GUI/HostInterop/AssemblyInfo.cpp
new file mode 100644
index 0000000..c11d2a3
Binary files /dev/null and b/GUI/HostInterop/AssemblyInfo.cpp differ
diff --git a/GUI/HostInterop/HostInterop.h b/GUI/HostInterop/HostInterop.h
new file mode 100644
index 0000000..ce127d2
Binary files /dev/null and b/GUI/HostInterop/HostInterop.h differ
diff --git a/GUI/HostInterop/HostInterop.vcxproj b/GUI/HostInterop/HostInterop.vcxproj
new file mode 100644
index 0000000..288a16c
--- /dev/null
+++ b/GUI/HostInterop/HostInterop.vcxproj
@@ -0,0 +1,151 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+ Debug
+ x64
+
+
+ Release
+ x64
+
+
+
+ 15.0
+ {C3534056-72B3-4651-B69C-6E428F675861}
+ v4.6
+ ManagedCProj
+ HostInterop
+ 10.0.17134.0
+
+
+
+ DynamicLibrary
+ true
+ v141
+ true
+ Unicode
+
+
+ DynamicLibrary
+ false
+ v141
+ true
+ Unicode
+
+
+ DynamicLibrary
+ true
+ v141
+ true
+ Unicode
+
+
+ DynamicLibrary
+ false
+ v141
+ true
+ Unicode
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+
+
+ true
+
+
+ false
+
+
+ false
+
+
+
+ Level3
+ Disabled
+ WIN32;_DEBUG;%(PreprocessorDefinitions)
+ Use
+
+
+
+
+
+
+
+ Level3
+ Disabled
+ _DEBUG;%(PreprocessorDefinitions)
+ Use
+
+
+
+
+
+
+
+ Level3
+ WIN32;NDEBUG;%(PreprocessorDefinitions)
+ Use
+
+
+
+
+
+
+
+ Level3
+ NDEBUG;%(PreprocessorDefinitions)
+ Use
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Create
+ Create
+ Create
+ Create
+
+
+
+
+
+
\ No newline at end of file
diff --git a/GUI/HostInterop/HostInterop.vcxproj.filters b/GUI/HostInterop/HostInterop.vcxproj.filters
new file mode 100644
index 0000000..3e0ae9a
--- /dev/null
+++ b/GUI/HostInterop/HostInterop.vcxproj.filters
@@ -0,0 +1,29 @@
+
+
+
+
+ {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
+ cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
+
+
+ {93995380-89BD-4b04-88EB-625FBE52EBFB}
+ h;hh;hpp;hxx;hm;inl;inc;ipp;xsd
+
+
+
+
+ Header Files
+
+
+ Header Files
+
+
+
+
+ Source Files
+
+
+ Source Files
+
+
+
\ No newline at end of file
diff --git a/GUI/HostInterop/stdafx.cpp b/GUI/HostInterop/stdafx.cpp
new file mode 100644
index 0000000..08343af
Binary files /dev/null and b/GUI/HostInterop/stdafx.cpp differ
diff --git a/GUI/HostInterop/stdafx.h b/GUI/HostInterop/stdafx.h
new file mode 100644
index 0000000..866b7f5
Binary files /dev/null and b/GUI/HostInterop/stdafx.h differ