#320: removed Visual Studio project
This commit is contained in:
		 Submodule 3rd-party updated: 39046e19f7...c728b6708a
									
								
							@@ -385,7 +385,7 @@ set(TIC80LIB_SRC
 | 
				
			|||||||
add_library(tic80lib STATIC ${TIC80LIB_SRC} ${DEMO_CARTS_OUT})
 | 
					add_library(tic80lib STATIC ${TIC80LIB_SRC} ${DEMO_CARTS_OUT})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if(WIN32)
 | 
					if(WIN32)
 | 
				
			||||||
	target_include_directories(tic80lib PRIVATE build/windows/include)
 | 
						target_include_directories(tic80lib PRIVATE 3rd-party/dirent)
 | 
				
			||||||
endif()
 | 
					endif()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
target_include_directories(tic80lib PRIVATE include)
 | 
					target_include_directories(tic80lib PRIVATE include)
 | 
				
			||||||
@@ -413,7 +413,7 @@ endif()
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
if(WIN32)
 | 
					if(WIN32)
 | 
				
			||||||
	# TODO: uncomment this (temporary disabled for VS2017)
 | 
						# TODO: uncomment this (temporary disabled for VS2017)
 | 
				
			||||||
	# set(TIC80_SRC ${TIC80_SRC} build/windows/tic/tic80.rc)
 | 
						# set(TIC80_SRC ${TIC80_SRC} build/windows/tic80.rc)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	add_executable(tic80 WIN32 ${TIC80_SRC})
 | 
						add_executable(tic80 WIN32 ${TIC80_SRC})
 | 
				
			||||||
else()
 | 
					else()
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										43
									
								
								build.sh
									
									
									
									
									
								
							
							
						
						
									
										43
									
								
								build.sh
									
									
									
									
									
								
							@@ -1,43 +0,0 @@
 | 
				
			|||||||
#!/usr/bin/env bash
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
##########################################################################
 | 
					 | 
				
			||||||
# build script for TIC-80
 | 
					 | 
				
			||||||
##########################################################################
 | 
					 | 
				
			||||||
echo "For a normal build, use the linux target."
 | 
					 | 
				
			||||||
echo "-lto targets (Link Time Optimization) have smaller output size."
 | 
					 | 
				
			||||||
echo "wasm, emscripten and mingw targets require their compilers to be installed."
 | 
					 | 
				
			||||||
PS3="Select build target: "
 | 
					 | 
				
			||||||
options=("dependencies" "linux" "linux32-lto" "linux64-lto" "emscripten" "wasm" "mingw" "chip-lto" "exit")
 | 
					 | 
				
			||||||
select opt in "${options[@]}"
 | 
					 | 
				
			||||||
do
 | 
					 | 
				
			||||||
  case $opt in
 | 
					 | 
				
			||||||
    "install packages")
 | 
					 | 
				
			||||||
      sudo apt-get install build-essential mercurial make cmake autoconf automake libtool libasound2-dev libpulse-dev libaudio-dev libx11-dev libxext-dev libxrandr-dev libxcursor-dev libxi-dev libxinerama-dev libxxf86vm-dev libxss-dev libgl1-mesa-dev libesd0-dev libdbus-1-dev libudev-dev libgles1-mesa-dev libgles2-mesa-dev libegl1-mesa-dev libibus-1.0-dev fcitx-libs-dev libsamplerate0-dev libgtk-3-dev zlib1g-dev libwayland-dev libxkbcommon-dev wayland-protocols libsndio-dev -y
 | 
					 | 
				
			||||||
      ;;
 | 
					 | 
				
			||||||
    "linux")
 | 
					 | 
				
			||||||
      make linux
 | 
					 | 
				
			||||||
      ;;
 | 
					 | 
				
			||||||
    "linux32-lto")
 | 
					 | 
				
			||||||
      make linux32-lto
 | 
					 | 
				
			||||||
      ;;
 | 
					 | 
				
			||||||
    "linux64-lto")
 | 
					 | 
				
			||||||
      make linux64-lto
 | 
					 | 
				
			||||||
      ;;
 | 
					 | 
				
			||||||
    "emscripten")
 | 
					 | 
				
			||||||
      make emscripten
 | 
					 | 
				
			||||||
      ;;
 | 
					 | 
				
			||||||
    "wasm")
 | 
					 | 
				
			||||||
      make wasm
 | 
					 | 
				
			||||||
      ;;
 | 
					 | 
				
			||||||
    "mingw")
 | 
					 | 
				
			||||||
      make mingw
 | 
					 | 
				
			||||||
      ;;
 | 
					 | 
				
			||||||
    "chip-lto")
 | 
					 | 
				
			||||||
      make chip-lto
 | 
					 | 
				
			||||||
      ;;
 | 
					 | 
				
			||||||
    "exit")
 | 
					 | 
				
			||||||
      break
 | 
					 | 
				
			||||||
      ;;
 | 
					 | 
				
			||||||
    *) echo Invalid target;;
 | 
					 | 
				
			||||||
  esac
 | 
					 | 
				
			||||||
done
 | 
					 | 
				
			||||||
@@ -1 +0,0 @@
 | 
				
			|||||||
0 ICON icon.ico
 | 
					 | 
				
			||||||
@@ -1,303 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup Label="ProjectConfigurations">
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug Pro|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Debug Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug Pro|x64">
 | 
					 | 
				
			||||||
      <Configuration>Debug Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release Pro|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Release Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release Pro|x64">
 | 
					 | 
				
			||||||
      <Configuration>Release Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|x64">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|x64">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\examples\sdl-renderer.c" />
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ProjectReference Include="..\..\..\3rd-party\SDL2-2.0.7\VisualC\SDLmain\SDLmain.vcxproj">
 | 
					 | 
				
			||||||
      <Project>{da956fd3-e142-46f2-9dd5-c78bebb56b7a}</Project>
 | 
					 | 
				
			||||||
    </ProjectReference>
 | 
					 | 
				
			||||||
    <ProjectReference Include="..\..\..\3rd-party\SDL2-2.0.7\VisualC\SDL\SDL.vcxproj">
 | 
					 | 
				
			||||||
      <Project>{81ce8daf-ebb2-4761-8e45-b71abcca8c68}</Project>
 | 
					 | 
				
			||||||
    </ProjectReference>
 | 
					 | 
				
			||||||
    <ProjectReference Include="..\tic80\tic80.vcxproj">
 | 
					 | 
				
			||||||
      <Project>{c4d8bc10-ebf6-42bb-9b5d-6712fb428a50}</Project>
 | 
					 | 
				
			||||||
    </ProjectReference>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="Globals">
 | 
					 | 
				
			||||||
    <ProjectGuid>{86CAA9C1-C61A-40D8-AC77-33D94754C824}</ProjectGuid>
 | 
					 | 
				
			||||||
    <Keyword>Win32Proj</Keyword>
 | 
					 | 
				
			||||||
    <RootNamespace>example</RootNamespace>
 | 
					 | 
				
			||||||
    <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>Unicode</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>Unicode</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>Unicode</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>Unicode</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>Unicode</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>Unicode</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>Unicode</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>Unicode</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionSettings">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="Shared">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="UserMacros" />
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <LinkIncremental>true</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'">
 | 
					 | 
				
			||||||
    <LinkIncremental>true</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <LinkIncremental>true</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'">
 | 
					 | 
				
			||||||
    <LinkIncremental>true</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <LinkIncremental>false</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'">
 | 
					 | 
				
			||||||
    <LinkIncremental>false</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <LinkIncremental>false</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'">
 | 
					 | 
				
			||||||
    <LinkIncremental>false</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\include;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
      <AdditionalDependencies>ws2_32.lib;version.lib;Imm32.lib;Winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
 | 
					 | 
				
			||||||
      <AdditionalLibraryDirectories>..\..\..\lib\windows</AdditionalLibraryDirectories>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\include;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
      <AdditionalDependencies>ws2_32.lib;version.lib;Imm32.lib;Winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
 | 
					 | 
				
			||||||
      <AdditionalLibraryDirectories>..\..\..\lib\windows</AdditionalLibraryDirectories>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\include;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
      <AdditionalDependencies>ws2_32.lib;version.lib;Imm32.lib;Winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
 | 
					 | 
				
			||||||
      <AdditionalLibraryDirectories>..\..\..\lib\windows</AdditionalLibraryDirectories>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\include;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
      <AdditionalDependencies>ws2_32.lib;version.lib;Imm32.lib;Winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
 | 
					 | 
				
			||||||
      <AdditionalLibraryDirectories>..\..\..\lib\windows</AdditionalLibraryDirectories>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\include;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
      <AdditionalDependencies>ws2_32.lib;version.lib;Imm32.lib;Winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
 | 
					 | 
				
			||||||
      <AdditionalLibraryDirectories>..\..\..\lib\windows</AdditionalLibraryDirectories>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\include;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
      <AdditionalDependencies>ws2_32.lib;version.lib;Imm32.lib;Winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
 | 
					 | 
				
			||||||
      <AdditionalLibraryDirectories>..\..\..\lib\windows</AdditionalLibraryDirectories>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\include;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
      <AdditionalDependencies>ws2_32.lib;version.lib;Imm32.lib;Winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
 | 
					 | 
				
			||||||
      <AdditionalLibraryDirectories>..\..\..\lib\windows</AdditionalLibraryDirectories>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\include;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
      <AdditionalDependencies>ws2_32.lib;version.lib;Imm32.lib;Winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
 | 
					 | 
				
			||||||
      <AdditionalLibraryDirectories>..\..\..\lib\windows</AdditionalLibraryDirectories>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionTargets">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,6 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\examples\sdl-renderer.c" />
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,4 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <PropertyGroup />
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,260 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup Label="ProjectConfigurations">
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug Pro|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Debug Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug Pro|x64">
 | 
					 | 
				
			||||||
      <Configuration>Debug Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release Pro|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Release Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release Pro|x64">
 | 
					 | 
				
			||||||
      <Configuration>Release Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|x64">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|x64">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\giflib-5.1.4\lib\dgif_lib.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\giflib-5.1.4\lib\egif_lib.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\giflib-5.1.4\lib\gifalloc.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\giflib-5.1.4\lib\gif_err.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\giflib-5.1.4\lib\gif_font.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\giflib-5.1.4\lib\gif_hash.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\giflib-5.1.4\lib\openbsd-reallocarray.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\giflib-5.1.4\lib\quantize.c" />
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="Globals">
 | 
					 | 
				
			||||||
    <ProjectGuid>{6EA9D998-7557-4AED-ABFC-142F9960C9B6}</ProjectGuid>
 | 
					 | 
				
			||||||
    <Keyword>Win32Proj</Keyword>
 | 
					 | 
				
			||||||
    <RootNamespace>gif</RootNamespace>
 | 
					 | 
				
			||||||
    <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionSettings">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="Shared">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="UserMacros" />
 | 
					 | 
				
			||||||
  <PropertyGroup />
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionTargets">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,13 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\giflib-5.1.4\lib\dgif_lib.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\giflib-5.1.4\lib\egif_lib.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\giflib-5.1.4\lib\gif_err.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\giflib-5.1.4\lib\gif_font.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\giflib-5.1.4\lib\gif_hash.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\giflib-5.1.4\lib\gifalloc.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\giflib-5.1.4\lib\openbsd-reallocarray.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\giflib-5.1.4\lib\quantize.c" />
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,4 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <PropertyGroup />
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
| 
		 Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB  | 
@@ -1,950 +0,0 @@
 | 
				
			|||||||
/*
 | 
					 | 
				
			||||||
* Dirent interface for Microsoft Visual Studio
 | 
					 | 
				
			||||||
* Version 1.21
 | 
					 | 
				
			||||||
*
 | 
					 | 
				
			||||||
* Copyright (C) 2006-2012 Toni Ronkko
 | 
					 | 
				
			||||||
* This file is part of dirent.  Dirent may be freely distributed
 | 
					 | 
				
			||||||
* under the MIT license.  For all details and documentation, see
 | 
					 | 
				
			||||||
* https://github.com/tronkko/dirent
 | 
					 | 
				
			||||||
*/
 | 
					 | 
				
			||||||
#ifndef DIRENT_H
 | 
					 | 
				
			||||||
#define DIRENT_H
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/*
 | 
					 | 
				
			||||||
* Include windows.h without Windows Sockets 1.1 to prevent conflicts with
 | 
					 | 
				
			||||||
* Windows Sockets 2.0.
 | 
					 | 
				
			||||||
*/
 | 
					 | 
				
			||||||
#ifndef WIN32_LEAN_AND_MEAN
 | 
					 | 
				
			||||||
#   define WIN32_LEAN_AND_MEAN
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#include <windows.h>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#include <stdio.h>
 | 
					 | 
				
			||||||
#include <stdarg.h>
 | 
					 | 
				
			||||||
#include <wchar.h>
 | 
					 | 
				
			||||||
#include <string.h>
 | 
					 | 
				
			||||||
#include <stdlib.h>
 | 
					 | 
				
			||||||
#include <malloc.h>
 | 
					 | 
				
			||||||
#include <sys/types.h>
 | 
					 | 
				
			||||||
#include <sys/stat.h>
 | 
					 | 
				
			||||||
#include <errno.h>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Indicates that d_type field is available in dirent structure */
 | 
					 | 
				
			||||||
#define _DIRENT_HAVE_D_TYPE
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Indicates that d_namlen field is available in dirent structure */
 | 
					 | 
				
			||||||
#define _DIRENT_HAVE_D_NAMLEN
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Entries missing from MSVC 6.0 */
 | 
					 | 
				
			||||||
#if !defined(FILE_ATTRIBUTE_DEVICE)
 | 
					 | 
				
			||||||
#   define FILE_ATTRIBUTE_DEVICE 0x40
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* File type and permission flags for stat(), general mask */
 | 
					 | 
				
			||||||
#if !defined(S_IFMT)
 | 
					 | 
				
			||||||
#   define S_IFMT _S_IFMT
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Directory bit */
 | 
					 | 
				
			||||||
#if !defined(S_IFDIR)
 | 
					 | 
				
			||||||
#   define S_IFDIR _S_IFDIR
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Character device bit */
 | 
					 | 
				
			||||||
#if !defined(S_IFCHR)
 | 
					 | 
				
			||||||
#   define S_IFCHR _S_IFCHR
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Pipe bit */
 | 
					 | 
				
			||||||
#if !defined(S_IFFIFO)
 | 
					 | 
				
			||||||
#   define S_IFFIFO _S_IFFIFO
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Regular file bit */
 | 
					 | 
				
			||||||
#if !defined(S_IFREG)
 | 
					 | 
				
			||||||
#   define S_IFREG _S_IFREG
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Read permission */
 | 
					 | 
				
			||||||
#if !defined(S_IREAD)
 | 
					 | 
				
			||||||
#   define S_IREAD _S_IREAD
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Write permission */
 | 
					 | 
				
			||||||
#if !defined(S_IWRITE)
 | 
					 | 
				
			||||||
#   define S_IWRITE _S_IWRITE
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Execute permission */
 | 
					 | 
				
			||||||
#if !defined(S_IEXEC)
 | 
					 | 
				
			||||||
#   define S_IEXEC _S_IEXEC
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Pipe */
 | 
					 | 
				
			||||||
#if !defined(S_IFIFO)
 | 
					 | 
				
			||||||
#   define S_IFIFO _S_IFIFO
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Block device */
 | 
					 | 
				
			||||||
#if !defined(S_IFBLK)
 | 
					 | 
				
			||||||
#   define S_IFBLK 0
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Link */
 | 
					 | 
				
			||||||
#if !defined(S_IFLNK)
 | 
					 | 
				
			||||||
#   define S_IFLNK 0
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Socket */
 | 
					 | 
				
			||||||
#if !defined(S_IFSOCK)
 | 
					 | 
				
			||||||
#   define S_IFSOCK 0
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Read user permission */
 | 
					 | 
				
			||||||
#if !defined(S_IRUSR)
 | 
					 | 
				
			||||||
#   define S_IRUSR S_IREAD
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Write user permission */
 | 
					 | 
				
			||||||
#if !defined(S_IWUSR)
 | 
					 | 
				
			||||||
#   define S_IWUSR S_IWRITE
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Execute user permission */
 | 
					 | 
				
			||||||
#if !defined(S_IXUSR)
 | 
					 | 
				
			||||||
#   define S_IXUSR 0
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Read group permission */
 | 
					 | 
				
			||||||
#if !defined(S_IRGRP)
 | 
					 | 
				
			||||||
#   define S_IRGRP 0
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Write group permission */
 | 
					 | 
				
			||||||
#if !defined(S_IWGRP)
 | 
					 | 
				
			||||||
#   define S_IWGRP 0
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Execute group permission */
 | 
					 | 
				
			||||||
#if !defined(S_IXGRP)
 | 
					 | 
				
			||||||
#   define S_IXGRP 0
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Read others permission */
 | 
					 | 
				
			||||||
#if !defined(S_IROTH)
 | 
					 | 
				
			||||||
#   define S_IROTH 0
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Write others permission */
 | 
					 | 
				
			||||||
#if !defined(S_IWOTH)
 | 
					 | 
				
			||||||
#   define S_IWOTH 0
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Execute others permission */
 | 
					 | 
				
			||||||
#if !defined(S_IXOTH)
 | 
					 | 
				
			||||||
#   define S_IXOTH 0
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Maximum length of file name */
 | 
					 | 
				
			||||||
#if !defined(PATH_MAX)
 | 
					 | 
				
			||||||
#   define PATH_MAX MAX_PATH
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#if !defined(FILENAME_MAX)
 | 
					 | 
				
			||||||
#   define FILENAME_MAX MAX_PATH
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#if !defined(NAME_MAX)
 | 
					 | 
				
			||||||
#   define NAME_MAX FILENAME_MAX
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* File type flags for d_type */
 | 
					 | 
				
			||||||
#define DT_UNKNOWN 0
 | 
					 | 
				
			||||||
#define DT_REG S_IFREG
 | 
					 | 
				
			||||||
#define DT_DIR S_IFDIR
 | 
					 | 
				
			||||||
#define DT_FIFO S_IFIFO
 | 
					 | 
				
			||||||
#define DT_SOCK S_IFSOCK
 | 
					 | 
				
			||||||
#define DT_CHR S_IFCHR
 | 
					 | 
				
			||||||
#define DT_BLK S_IFBLK
 | 
					 | 
				
			||||||
#define DT_LNK S_IFLNK
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Macros for converting between st_mode and d_type */
 | 
					 | 
				
			||||||
#define IFTODT(mode) ((mode) & S_IFMT)
 | 
					 | 
				
			||||||
#define DTTOIF(type) (type)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/*
 | 
					 | 
				
			||||||
* File type macros.  Note that block devices, sockets and links cannot be
 | 
					 | 
				
			||||||
* distinguished on Windows and the macros S_ISBLK, S_ISSOCK and S_ISLNK are
 | 
					 | 
				
			||||||
* only defined for compatibility.  These macros should always return false
 | 
					 | 
				
			||||||
* on Windows.
 | 
					 | 
				
			||||||
*/
 | 
					 | 
				
			||||||
#if !defined(S_ISFIFO)
 | 
					 | 
				
			||||||
#   define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO)
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#if !defined(S_ISDIR)
 | 
					 | 
				
			||||||
#   define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#if !defined(S_ISREG)
 | 
					 | 
				
			||||||
#   define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG)
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#if !defined(S_ISLNK)
 | 
					 | 
				
			||||||
#   define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#if !defined(S_ISSOCK)
 | 
					 | 
				
			||||||
#   define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK)
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#if !defined(S_ISCHR)
 | 
					 | 
				
			||||||
#   define S_ISCHR(mode) (((mode) & S_IFMT) == S_IFCHR)
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#if !defined(S_ISBLK)
 | 
					 | 
				
			||||||
#   define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK)
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Return the exact length of d_namlen without zero terminator */
 | 
					 | 
				
			||||||
#define _D_EXACT_NAMLEN(p) ((p)->d_namlen)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/* Return number of bytes needed to store d_namlen */
 | 
					 | 
				
			||||||
#define _D_ALLOC_NAMLEN(p) (PATH_MAX)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#ifdef __cplusplus
 | 
					 | 
				
			||||||
extern "C" {
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	/* Wide-character version */
 | 
					 | 
				
			||||||
	struct _wdirent {
 | 
					 | 
				
			||||||
		/* Always zero */
 | 
					 | 
				
			||||||
		long d_ino;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Structure size */
 | 
					 | 
				
			||||||
		unsigned short d_reclen;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Length of name without \0 */
 | 
					 | 
				
			||||||
		size_t d_namlen;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* File type */
 | 
					 | 
				
			||||||
		int d_type;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* File name */
 | 
					 | 
				
			||||||
		wchar_t d_name[PATH_MAX];
 | 
					 | 
				
			||||||
	};
 | 
					 | 
				
			||||||
	typedef struct _wdirent _wdirent;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	struct _WDIR {
 | 
					 | 
				
			||||||
		/* Current directory entry */
 | 
					 | 
				
			||||||
		struct _wdirent ent;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Private file data */
 | 
					 | 
				
			||||||
		WIN32_FIND_DATAW data;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* True if data is valid */
 | 
					 | 
				
			||||||
		int cached;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Win32 search handle */
 | 
					 | 
				
			||||||
		HANDLE handle;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Initial directory name */
 | 
					 | 
				
			||||||
		wchar_t *patt;
 | 
					 | 
				
			||||||
	};
 | 
					 | 
				
			||||||
	typedef struct _WDIR _WDIR;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	static _WDIR *_wopendir(const wchar_t *dirname);
 | 
					 | 
				
			||||||
	static struct _wdirent *_wreaddir(_WDIR *dirp);
 | 
					 | 
				
			||||||
	static int _wclosedir(_WDIR *dirp);
 | 
					 | 
				
			||||||
	static void _wrewinddir(_WDIR* dirp);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	/* For compatibility with Symbian */
 | 
					 | 
				
			||||||
#define wdirent _wdirent
 | 
					 | 
				
			||||||
#define WDIR _WDIR
 | 
					 | 
				
			||||||
#define wopendir _wopendir
 | 
					 | 
				
			||||||
#define wreaddir _wreaddir
 | 
					 | 
				
			||||||
#define wclosedir _wclosedir
 | 
					 | 
				
			||||||
#define wrewinddir _wrewinddir
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	/* Multi-byte character versions */
 | 
					 | 
				
			||||||
	struct dirent {
 | 
					 | 
				
			||||||
		/* Always zero */
 | 
					 | 
				
			||||||
		long d_ino;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Structure size */
 | 
					 | 
				
			||||||
		unsigned short d_reclen;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Length of name without \0 */
 | 
					 | 
				
			||||||
		size_t d_namlen;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* File type */
 | 
					 | 
				
			||||||
		int d_type;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* File name */
 | 
					 | 
				
			||||||
		char d_name[PATH_MAX];
 | 
					 | 
				
			||||||
	};
 | 
					 | 
				
			||||||
	typedef struct dirent dirent;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	struct DIR {
 | 
					 | 
				
			||||||
		struct dirent ent;
 | 
					 | 
				
			||||||
		struct _WDIR *wdirp;
 | 
					 | 
				
			||||||
	};
 | 
					 | 
				
			||||||
	typedef struct DIR DIR;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	static DIR *opendir(const char *dirname);
 | 
					 | 
				
			||||||
	static struct dirent *readdir(DIR *dirp);
 | 
					 | 
				
			||||||
	static int closedir(DIR *dirp);
 | 
					 | 
				
			||||||
	static void rewinddir(DIR* dirp);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	/* Internal utility functions */
 | 
					 | 
				
			||||||
	static WIN32_FIND_DATAW *dirent_first(_WDIR *dirp);
 | 
					 | 
				
			||||||
	static WIN32_FIND_DATAW *dirent_next(_WDIR *dirp);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	static int dirent_mbstowcs_s(
 | 
					 | 
				
			||||||
		size_t *pReturnValue,
 | 
					 | 
				
			||||||
		wchar_t *wcstr,
 | 
					 | 
				
			||||||
		size_t sizeInWords,
 | 
					 | 
				
			||||||
		const char *mbstr,
 | 
					 | 
				
			||||||
		size_t count);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	static int dirent_wcstombs_s(
 | 
					 | 
				
			||||||
		size_t *pReturnValue,
 | 
					 | 
				
			||||||
		char *mbstr,
 | 
					 | 
				
			||||||
		size_t sizeInBytes,
 | 
					 | 
				
			||||||
		const wchar_t *wcstr,
 | 
					 | 
				
			||||||
		size_t count);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	static void dirent_set_errno(int error);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	/*
 | 
					 | 
				
			||||||
	* Open directory stream DIRNAME for read and return a pointer to the
 | 
					 | 
				
			||||||
	* internal working area that is used to retrieve individual directory
 | 
					 | 
				
			||||||
	* entries.
 | 
					 | 
				
			||||||
	*/
 | 
					 | 
				
			||||||
	static _WDIR*
 | 
					 | 
				
			||||||
		_wopendir(
 | 
					 | 
				
			||||||
			const wchar_t *dirname)
 | 
					 | 
				
			||||||
	{
 | 
					 | 
				
			||||||
		_WDIR *dirp = NULL;
 | 
					 | 
				
			||||||
		int error;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Must have directory name */
 | 
					 | 
				
			||||||
		if (dirname == NULL || dirname[0] == '\0') {
 | 
					 | 
				
			||||||
			dirent_set_errno(ENOENT);
 | 
					 | 
				
			||||||
			return NULL;
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Allocate new _WDIR structure */
 | 
					 | 
				
			||||||
		dirp = (_WDIR*)malloc(sizeof(struct _WDIR));
 | 
					 | 
				
			||||||
		if (dirp != NULL) {
 | 
					 | 
				
			||||||
			DWORD n;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Reset _WDIR structure */
 | 
					 | 
				
			||||||
			dirp->handle = INVALID_HANDLE_VALUE;
 | 
					 | 
				
			||||||
			dirp->patt = NULL;
 | 
					 | 
				
			||||||
			dirp->cached = 0;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Compute the length of full path plus zero terminator
 | 
					 | 
				
			||||||
			*
 | 
					 | 
				
			||||||
			* Note that on WinRT there's no way to convert relative paths
 | 
					 | 
				
			||||||
			* into absolute paths, so just assume its an absolute path.
 | 
					 | 
				
			||||||
			*/
 | 
					 | 
				
			||||||
#       if defined(WINAPI_FAMILY) && (WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP)
 | 
					 | 
				
			||||||
			n = wcslen(dirname);
 | 
					 | 
				
			||||||
#       else
 | 
					 | 
				
			||||||
			n = GetFullPathNameW(dirname, 0, NULL, NULL);
 | 
					 | 
				
			||||||
#       endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Allocate room for absolute directory name and search pattern */
 | 
					 | 
				
			||||||
			dirp->patt = (wchar_t*)malloc(sizeof(wchar_t) * n + 16);
 | 
					 | 
				
			||||||
			if (dirp->patt) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
				/*
 | 
					 | 
				
			||||||
				* Convert relative directory name to an absolute one.  This
 | 
					 | 
				
			||||||
				* allows rewinddir() to function correctly even when current
 | 
					 | 
				
			||||||
				* working directory is changed between opendir() and rewinddir().
 | 
					 | 
				
			||||||
				*
 | 
					 | 
				
			||||||
				* Note that on WinRT there's no way to convert relative paths
 | 
					 | 
				
			||||||
				* into absolute paths, so just assume its an absolute path.
 | 
					 | 
				
			||||||
				*/
 | 
					 | 
				
			||||||
#           if defined(WINAPI_FAMILY) && (WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP)
 | 
					 | 
				
			||||||
				wcsncpy_s(dirp->patt, n + 1, dirname, n);
 | 
					 | 
				
			||||||
#           else
 | 
					 | 
				
			||||||
				n = GetFullPathNameW(dirname, n, dirp->patt, NULL);
 | 
					 | 
				
			||||||
#           endif
 | 
					 | 
				
			||||||
				if (n > 0) {
 | 
					 | 
				
			||||||
					wchar_t *p;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
					/* Append search pattern \* to the directory name */
 | 
					 | 
				
			||||||
					p = dirp->patt + n;
 | 
					 | 
				
			||||||
					if (dirp->patt < p) {
 | 
					 | 
				
			||||||
						switch (p[-1]) {
 | 
					 | 
				
			||||||
						case '\\':
 | 
					 | 
				
			||||||
						case '/':
 | 
					 | 
				
			||||||
						case ':':
 | 
					 | 
				
			||||||
							/* Directory ends in path separator, e.g. c:\temp\ */
 | 
					 | 
				
			||||||
							/*NOP*/;
 | 
					 | 
				
			||||||
							break;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
						default:
 | 
					 | 
				
			||||||
							/* Directory name doesn't end in path separator */
 | 
					 | 
				
			||||||
							*p++ = '\\';
 | 
					 | 
				
			||||||
						}
 | 
					 | 
				
			||||||
					}
 | 
					 | 
				
			||||||
					*p++ = '*';
 | 
					 | 
				
			||||||
					*p = '\0';
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
					/* Open directory stream and retrieve the first entry */
 | 
					 | 
				
			||||||
					if (dirent_first(dirp)) {
 | 
					 | 
				
			||||||
						/* Directory stream opened successfully */
 | 
					 | 
				
			||||||
						error = 0;
 | 
					 | 
				
			||||||
					}
 | 
					 | 
				
			||||||
					else {
 | 
					 | 
				
			||||||
						/* Cannot retrieve first entry */
 | 
					 | 
				
			||||||
						error = 1;
 | 
					 | 
				
			||||||
						dirent_set_errno(ENOENT);
 | 
					 | 
				
			||||||
					}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
				}
 | 
					 | 
				
			||||||
				else {
 | 
					 | 
				
			||||||
					/* Cannot retrieve full path name */
 | 
					 | 
				
			||||||
					dirent_set_errno(ENOENT);
 | 
					 | 
				
			||||||
					error = 1;
 | 
					 | 
				
			||||||
				}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
			else {
 | 
					 | 
				
			||||||
				/* Cannot allocate memory for search pattern */
 | 
					 | 
				
			||||||
				error = 1;
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		else {
 | 
					 | 
				
			||||||
			/* Cannot allocate _WDIR structure */
 | 
					 | 
				
			||||||
			error = 1;
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Clean up in case of error */
 | 
					 | 
				
			||||||
		if (error  &&  dirp) {
 | 
					 | 
				
			||||||
			_wclosedir(dirp);
 | 
					 | 
				
			||||||
			dirp = NULL;
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		return dirp;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	/*
 | 
					 | 
				
			||||||
	* Read next directory entry.  The directory entry is returned in dirent
 | 
					 | 
				
			||||||
	* structure in the d_name field.  Individual directory entries returned by
 | 
					 | 
				
			||||||
	* this function include regular files, sub-directories, pseudo-directories
 | 
					 | 
				
			||||||
	* "." and ".." as well as volume labels, hidden files and system files.
 | 
					 | 
				
			||||||
	*/
 | 
					 | 
				
			||||||
	static struct _wdirent*
 | 
					 | 
				
			||||||
		_wreaddir(
 | 
					 | 
				
			||||||
			_WDIR *dirp)
 | 
					 | 
				
			||||||
	{
 | 
					 | 
				
			||||||
		WIN32_FIND_DATAW *datap;
 | 
					 | 
				
			||||||
		struct _wdirent *entp;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Read next directory entry */
 | 
					 | 
				
			||||||
		datap = dirent_next(dirp);
 | 
					 | 
				
			||||||
		if (datap) {
 | 
					 | 
				
			||||||
			size_t n;
 | 
					 | 
				
			||||||
			DWORD attr;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Pointer to directory entry to return */
 | 
					 | 
				
			||||||
			entp = &dirp->ent;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/*
 | 
					 | 
				
			||||||
			* Copy file name as wide-character string.  If the file name is too
 | 
					 | 
				
			||||||
			* long to fit in to the destination buffer, then truncate file name
 | 
					 | 
				
			||||||
			* to PATH_MAX characters and zero-terminate the buffer.
 | 
					 | 
				
			||||||
			*/
 | 
					 | 
				
			||||||
			n = 0;
 | 
					 | 
				
			||||||
			while (n + 1 < PATH_MAX  &&  datap->cFileName[n] != 0) {
 | 
					 | 
				
			||||||
				entp->d_name[n] = datap->cFileName[n];
 | 
					 | 
				
			||||||
				n++;
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
			dirp->ent.d_name[n] = 0;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Length of file name excluding zero terminator */
 | 
					 | 
				
			||||||
			entp->d_namlen = n;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* File type */
 | 
					 | 
				
			||||||
			attr = datap->dwFileAttributes;
 | 
					 | 
				
			||||||
			if ((attr & FILE_ATTRIBUTE_DEVICE) != 0) {
 | 
					 | 
				
			||||||
				entp->d_type = DT_CHR;
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
			else if ((attr & FILE_ATTRIBUTE_DIRECTORY) != 0) {
 | 
					 | 
				
			||||||
				entp->d_type = DT_DIR;
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
			else {
 | 
					 | 
				
			||||||
				entp->d_type = DT_REG;
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Reset dummy fields */
 | 
					 | 
				
			||||||
			entp->d_ino = 0;
 | 
					 | 
				
			||||||
			entp->d_reclen = sizeof(struct _wdirent);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		else {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Last directory entry read */
 | 
					 | 
				
			||||||
			entp = NULL;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		return entp;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	/*
 | 
					 | 
				
			||||||
	* Close directory stream opened by opendir() function.  This invalidates the
 | 
					 | 
				
			||||||
	* DIR structure as well as any directory entry read previously by
 | 
					 | 
				
			||||||
	* _wreaddir().
 | 
					 | 
				
			||||||
	*/
 | 
					 | 
				
			||||||
	static int
 | 
					 | 
				
			||||||
		_wclosedir(
 | 
					 | 
				
			||||||
			_WDIR *dirp)
 | 
					 | 
				
			||||||
	{
 | 
					 | 
				
			||||||
		int ok;
 | 
					 | 
				
			||||||
		if (dirp) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Release search handle */
 | 
					 | 
				
			||||||
			if (dirp->handle != INVALID_HANDLE_VALUE) {
 | 
					 | 
				
			||||||
				FindClose(dirp->handle);
 | 
					 | 
				
			||||||
				dirp->handle = INVALID_HANDLE_VALUE;
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Release search pattern */
 | 
					 | 
				
			||||||
			if (dirp->patt) {
 | 
					 | 
				
			||||||
				free(dirp->patt);
 | 
					 | 
				
			||||||
				dirp->patt = NULL;
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Release directory structure */
 | 
					 | 
				
			||||||
			free(dirp);
 | 
					 | 
				
			||||||
			ok = /*success*/0;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		else {
 | 
					 | 
				
			||||||
			/* Invalid directory stream */
 | 
					 | 
				
			||||||
			dirent_set_errno(EBADF);
 | 
					 | 
				
			||||||
			ok = /*failure*/-1;
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		return ok;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	/*
 | 
					 | 
				
			||||||
	* Rewind directory stream such that _wreaddir() returns the very first
 | 
					 | 
				
			||||||
	* file name again.
 | 
					 | 
				
			||||||
	*/
 | 
					 | 
				
			||||||
	static void
 | 
					 | 
				
			||||||
		_wrewinddir(
 | 
					 | 
				
			||||||
			_WDIR* dirp)
 | 
					 | 
				
			||||||
	{
 | 
					 | 
				
			||||||
		if (dirp) {
 | 
					 | 
				
			||||||
			/* Release existing search handle */
 | 
					 | 
				
			||||||
			if (dirp->handle != INVALID_HANDLE_VALUE) {
 | 
					 | 
				
			||||||
				FindClose(dirp->handle);
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Open new search handle */
 | 
					 | 
				
			||||||
			dirent_first(dirp);
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	/* Get first directory entry (internal) */
 | 
					 | 
				
			||||||
	static WIN32_FIND_DATAW*
 | 
					 | 
				
			||||||
		dirent_first(
 | 
					 | 
				
			||||||
			_WDIR *dirp)
 | 
					 | 
				
			||||||
	{
 | 
					 | 
				
			||||||
		WIN32_FIND_DATAW *datap;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Open directory and retrieve the first entry */
 | 
					 | 
				
			||||||
		dirp->handle = FindFirstFileExW(
 | 
					 | 
				
			||||||
			dirp->patt, FindExInfoStandard, &dirp->data,
 | 
					 | 
				
			||||||
			FindExSearchNameMatch, NULL, 0);
 | 
					 | 
				
			||||||
		if (dirp->handle != INVALID_HANDLE_VALUE) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* a directory entry is now waiting in memory */
 | 
					 | 
				
			||||||
			datap = &dirp->data;
 | 
					 | 
				
			||||||
			dirp->cached = 1;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		else {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Failed to re-open directory: no directory entry in memory */
 | 
					 | 
				
			||||||
			dirp->cached = 0;
 | 
					 | 
				
			||||||
			datap = NULL;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		return datap;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	/* Get next directory entry (internal) */
 | 
					 | 
				
			||||||
	static WIN32_FIND_DATAW*
 | 
					 | 
				
			||||||
		dirent_next(
 | 
					 | 
				
			||||||
			_WDIR *dirp)
 | 
					 | 
				
			||||||
	{
 | 
					 | 
				
			||||||
		WIN32_FIND_DATAW *p;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Get next directory entry */
 | 
					 | 
				
			||||||
		if (dirp->cached != 0) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* A valid directory entry already in memory */
 | 
					 | 
				
			||||||
			p = &dirp->data;
 | 
					 | 
				
			||||||
			dirp->cached = 0;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		else if (dirp->handle != INVALID_HANDLE_VALUE) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Get the next directory entry from stream */
 | 
					 | 
				
			||||||
			if (FindNextFileW(dirp->handle, &dirp->data) != FALSE) {
 | 
					 | 
				
			||||||
				/* Got a file */
 | 
					 | 
				
			||||||
				p = &dirp->data;
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
			else {
 | 
					 | 
				
			||||||
				/* The very last entry has been processed or an error occured */
 | 
					 | 
				
			||||||
				FindClose(dirp->handle);
 | 
					 | 
				
			||||||
				dirp->handle = INVALID_HANDLE_VALUE;
 | 
					 | 
				
			||||||
				p = NULL;
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		else {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* End of directory stream reached */
 | 
					 | 
				
			||||||
			p = NULL;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		return p;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	/*
 | 
					 | 
				
			||||||
	* Open directory stream using plain old C-string.
 | 
					 | 
				
			||||||
	*/
 | 
					 | 
				
			||||||
	static DIR*
 | 
					 | 
				
			||||||
		opendir(
 | 
					 | 
				
			||||||
			const char *dirname)
 | 
					 | 
				
			||||||
	{
 | 
					 | 
				
			||||||
		struct DIR *dirp;
 | 
					 | 
				
			||||||
		int error;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Must have directory name */
 | 
					 | 
				
			||||||
		if (dirname == NULL || dirname[0] == '\0') {
 | 
					 | 
				
			||||||
			dirent_set_errno(ENOENT);
 | 
					 | 
				
			||||||
			return NULL;
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Allocate memory for DIR structure */
 | 
					 | 
				
			||||||
		dirp = (DIR*)malloc(sizeof(struct DIR));
 | 
					 | 
				
			||||||
		if (dirp) {
 | 
					 | 
				
			||||||
			wchar_t wname[PATH_MAX];
 | 
					 | 
				
			||||||
			size_t n;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Convert directory name to wide-character string */
 | 
					 | 
				
			||||||
			error = dirent_mbstowcs_s(&n, wname, PATH_MAX, dirname, PATH_MAX);
 | 
					 | 
				
			||||||
			if (!error) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
				/* Open directory stream using wide-character name */
 | 
					 | 
				
			||||||
				dirp->wdirp = _wopendir(wname);
 | 
					 | 
				
			||||||
				if (dirp->wdirp) {
 | 
					 | 
				
			||||||
					/* Directory stream opened */
 | 
					 | 
				
			||||||
					error = 0;
 | 
					 | 
				
			||||||
				}
 | 
					 | 
				
			||||||
				else {
 | 
					 | 
				
			||||||
					/* Failed to open directory stream */
 | 
					 | 
				
			||||||
					error = 1;
 | 
					 | 
				
			||||||
				}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
			else {
 | 
					 | 
				
			||||||
				/*
 | 
					 | 
				
			||||||
				* Cannot convert file name to wide-character string.  This
 | 
					 | 
				
			||||||
				* occurs if the string contains invalid multi-byte sequences or
 | 
					 | 
				
			||||||
				* the output buffer is too small to contain the resulting
 | 
					 | 
				
			||||||
				* string.
 | 
					 | 
				
			||||||
				*/
 | 
					 | 
				
			||||||
				error = 1;
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		else {
 | 
					 | 
				
			||||||
			/* Cannot allocate DIR structure */
 | 
					 | 
				
			||||||
			error = 1;
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Clean up in case of error */
 | 
					 | 
				
			||||||
		if (error  &&  dirp) {
 | 
					 | 
				
			||||||
			free(dirp);
 | 
					 | 
				
			||||||
			dirp = NULL;
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		return dirp;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	/*
 | 
					 | 
				
			||||||
	* Read next directory entry.
 | 
					 | 
				
			||||||
	*
 | 
					 | 
				
			||||||
	* When working with text consoles, please note that file names returned by
 | 
					 | 
				
			||||||
	* readdir() are represented in the default ANSI code page while any output to
 | 
					 | 
				
			||||||
	* console is typically formatted on another code page.  Thus, non-ASCII
 | 
					 | 
				
			||||||
	* characters in file names will not usually display correctly on console.  The
 | 
					 | 
				
			||||||
	* problem can be fixed in two ways: (1) change the character set of console
 | 
					 | 
				
			||||||
	* to 1252 using chcp utility and use Lucida Console font, or (2) use
 | 
					 | 
				
			||||||
	* _cprintf function when writing to console.  The _cprinf() will re-encode
 | 
					 | 
				
			||||||
	* ANSI strings to the console code page so many non-ASCII characters will
 | 
					 | 
				
			||||||
	* display correcly.
 | 
					 | 
				
			||||||
	*/
 | 
					 | 
				
			||||||
	static struct dirent*
 | 
					 | 
				
			||||||
		readdir(
 | 
					 | 
				
			||||||
			DIR *dirp)
 | 
					 | 
				
			||||||
	{
 | 
					 | 
				
			||||||
		WIN32_FIND_DATAW *datap;
 | 
					 | 
				
			||||||
		struct dirent *entp;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Read next directory entry */
 | 
					 | 
				
			||||||
		datap = dirent_next(dirp->wdirp);
 | 
					 | 
				
			||||||
		if (datap) {
 | 
					 | 
				
			||||||
			size_t n;
 | 
					 | 
				
			||||||
			int error;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Attempt to convert file name to multi-byte string */
 | 
					 | 
				
			||||||
			error = dirent_wcstombs_s(
 | 
					 | 
				
			||||||
				&n, dirp->ent.d_name, PATH_MAX, datap->cFileName, PATH_MAX);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/*
 | 
					 | 
				
			||||||
			* If the file name cannot be represented by a multi-byte string,
 | 
					 | 
				
			||||||
			* then attempt to use old 8+3 file name.  This allows traditional
 | 
					 | 
				
			||||||
			* Unix-code to access some file names despite of unicode
 | 
					 | 
				
			||||||
			* characters, although file names may seem unfamiliar to the user.
 | 
					 | 
				
			||||||
			*
 | 
					 | 
				
			||||||
			* Be ware that the code below cannot come up with a short file
 | 
					 | 
				
			||||||
			* name unless the file system provides one.  At least
 | 
					 | 
				
			||||||
			* VirtualBox shared folders fail to do this.
 | 
					 | 
				
			||||||
			*/
 | 
					 | 
				
			||||||
			if (error  &&  datap->cAlternateFileName[0] != '\0') {
 | 
					 | 
				
			||||||
				error = dirent_wcstombs_s(
 | 
					 | 
				
			||||||
					&n, dirp->ent.d_name, PATH_MAX,
 | 
					 | 
				
			||||||
					datap->cAlternateFileName, PATH_MAX);
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			if (!error) {
 | 
					 | 
				
			||||||
				DWORD attr;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
				/* Initialize directory entry for return */
 | 
					 | 
				
			||||||
				entp = &dirp->ent;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
				/* Length of file name excluding zero terminator */
 | 
					 | 
				
			||||||
				entp->d_namlen = n - 1;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
				/* File attributes */
 | 
					 | 
				
			||||||
				attr = datap->dwFileAttributes;
 | 
					 | 
				
			||||||
				if ((attr & FILE_ATTRIBUTE_DEVICE) != 0) {
 | 
					 | 
				
			||||||
					entp->d_type = DT_CHR;
 | 
					 | 
				
			||||||
				}
 | 
					 | 
				
			||||||
				else if ((attr & FILE_ATTRIBUTE_DIRECTORY) != 0) {
 | 
					 | 
				
			||||||
					entp->d_type = DT_DIR;
 | 
					 | 
				
			||||||
				}
 | 
					 | 
				
			||||||
				else {
 | 
					 | 
				
			||||||
					entp->d_type = DT_REG;
 | 
					 | 
				
			||||||
				}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
				/* Reset dummy fields */
 | 
					 | 
				
			||||||
				entp->d_ino = 0;
 | 
					 | 
				
			||||||
				entp->d_reclen = sizeof(struct dirent);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
			else {
 | 
					 | 
				
			||||||
				/*
 | 
					 | 
				
			||||||
				* Cannot convert file name to multi-byte string so construct
 | 
					 | 
				
			||||||
				* an errornous directory entry and return that.  Note that
 | 
					 | 
				
			||||||
				* we cannot return NULL as that would stop the processing
 | 
					 | 
				
			||||||
				* of directory entries completely.
 | 
					 | 
				
			||||||
				*/
 | 
					 | 
				
			||||||
				entp = &dirp->ent;
 | 
					 | 
				
			||||||
				entp->d_name[0] = '?';
 | 
					 | 
				
			||||||
				entp->d_name[1] = '\0';
 | 
					 | 
				
			||||||
				entp->d_namlen = 1;
 | 
					 | 
				
			||||||
				entp->d_type = DT_UNKNOWN;
 | 
					 | 
				
			||||||
				entp->d_ino = 0;
 | 
					 | 
				
			||||||
				entp->d_reclen = 0;
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		else {
 | 
					 | 
				
			||||||
			/* No more directory entries */
 | 
					 | 
				
			||||||
			entp = NULL;
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		return entp;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	/*
 | 
					 | 
				
			||||||
	* Close directory stream.
 | 
					 | 
				
			||||||
	*/
 | 
					 | 
				
			||||||
	static int
 | 
					 | 
				
			||||||
		closedir(
 | 
					 | 
				
			||||||
			DIR *dirp)
 | 
					 | 
				
			||||||
	{
 | 
					 | 
				
			||||||
		int ok;
 | 
					 | 
				
			||||||
		if (dirp) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Close wide-character directory stream */
 | 
					 | 
				
			||||||
			ok = _wclosedir(dirp->wdirp);
 | 
					 | 
				
			||||||
			dirp->wdirp = NULL;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Release multi-byte character version */
 | 
					 | 
				
			||||||
			free(dirp);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		else {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Invalid directory stream */
 | 
					 | 
				
			||||||
			dirent_set_errno(EBADF);
 | 
					 | 
				
			||||||
			ok = /*failure*/-1;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		return ok;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	/*
 | 
					 | 
				
			||||||
	* Rewind directory stream to beginning.
 | 
					 | 
				
			||||||
	*/
 | 
					 | 
				
			||||||
	static void
 | 
					 | 
				
			||||||
		rewinddir(
 | 
					 | 
				
			||||||
			DIR* dirp)
 | 
					 | 
				
			||||||
	{
 | 
					 | 
				
			||||||
		/* Rewind wide-character string directory stream */
 | 
					 | 
				
			||||||
		_wrewinddir(dirp->wdirp);
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	/* Convert multi-byte string to wide character string */
 | 
					 | 
				
			||||||
	static int
 | 
					 | 
				
			||||||
		dirent_mbstowcs_s(
 | 
					 | 
				
			||||||
			size_t *pReturnValue,
 | 
					 | 
				
			||||||
			wchar_t *wcstr,
 | 
					 | 
				
			||||||
			size_t sizeInWords,
 | 
					 | 
				
			||||||
			const char *mbstr,
 | 
					 | 
				
			||||||
			size_t count)
 | 
					 | 
				
			||||||
	{
 | 
					 | 
				
			||||||
		int error;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#if defined(_MSC_VER)  &&  _MSC_VER >= 1400
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Microsoft Visual Studio 2005 or later */
 | 
					 | 
				
			||||||
		error = mbstowcs_s(pReturnValue, wcstr, sizeInWords, mbstr, count);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#else
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Older Visual Studio or non-Microsoft compiler */
 | 
					 | 
				
			||||||
		size_t n;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Convert to wide-character string (or count characters) */
 | 
					 | 
				
			||||||
		n = mbstowcs(wcstr, mbstr, sizeInWords);
 | 
					 | 
				
			||||||
		if (!wcstr || n < count) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Zero-terminate output buffer */
 | 
					 | 
				
			||||||
			if (wcstr  &&  sizeInWords) {
 | 
					 | 
				
			||||||
				if (n >= sizeInWords) {
 | 
					 | 
				
			||||||
					n = sizeInWords - 1;
 | 
					 | 
				
			||||||
				}
 | 
					 | 
				
			||||||
				wcstr[n] = 0;
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Length of resuting multi-byte string WITH zero terminator */
 | 
					 | 
				
			||||||
			if (pReturnValue) {
 | 
					 | 
				
			||||||
				*pReturnValue = n + 1;
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Success */
 | 
					 | 
				
			||||||
			error = 0;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		else {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Could not convert string */
 | 
					 | 
				
			||||||
			error = 1;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		return error;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	/* Convert wide-character string to multi-byte string */
 | 
					 | 
				
			||||||
	static int
 | 
					 | 
				
			||||||
		dirent_wcstombs_s(
 | 
					 | 
				
			||||||
			size_t *pReturnValue,
 | 
					 | 
				
			||||||
			char *mbstr,
 | 
					 | 
				
			||||||
			size_t sizeInBytes, /* max size of mbstr */
 | 
					 | 
				
			||||||
			const wchar_t *wcstr,
 | 
					 | 
				
			||||||
			size_t count)
 | 
					 | 
				
			||||||
	{
 | 
					 | 
				
			||||||
		int error;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#if defined(_MSC_VER)  &&  _MSC_VER >= 1400
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Microsoft Visual Studio 2005 or later */
 | 
					 | 
				
			||||||
		error = wcstombs_s(pReturnValue, mbstr, sizeInBytes, wcstr, count);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#else
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Older Visual Studio or non-Microsoft compiler */
 | 
					 | 
				
			||||||
		size_t n;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Convert to multi-byte string (or count the number of bytes needed) */
 | 
					 | 
				
			||||||
		n = wcstombs(mbstr, wcstr, sizeInBytes);
 | 
					 | 
				
			||||||
		if (!mbstr || n < count) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Zero-terminate output buffer */
 | 
					 | 
				
			||||||
			if (mbstr  &&  sizeInBytes) {
 | 
					 | 
				
			||||||
				if (n >= sizeInBytes) {
 | 
					 | 
				
			||||||
					n = sizeInBytes - 1;
 | 
					 | 
				
			||||||
				}
 | 
					 | 
				
			||||||
				mbstr[n] = '\0';
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Length of resulting multi-bytes string WITH zero-terminator */
 | 
					 | 
				
			||||||
			if (pReturnValue) {
 | 
					 | 
				
			||||||
				*pReturnValue = n + 1;
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Success */
 | 
					 | 
				
			||||||
			error = 0;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
		else {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
			/* Cannot convert string */
 | 
					 | 
				
			||||||
			error = 1;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		return error;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	/* Set errno variable */
 | 
					 | 
				
			||||||
	static void
 | 
					 | 
				
			||||||
		dirent_set_errno(
 | 
					 | 
				
			||||||
			int error)
 | 
					 | 
				
			||||||
	{
 | 
					 | 
				
			||||||
#if defined(_MSC_VER)  &&  _MSC_VER >= 1400
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Microsoft Visual Studio 2005 and later */
 | 
					 | 
				
			||||||
		_set_errno(error);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#else
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
		/* Non-Microsoft compiler or older Microsoft compiler */
 | 
					 | 
				
			||||||
		errno = error;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#ifdef __cplusplus
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#endif /*DIRENT_H*/
 | 
					 | 
				
			||||||
@@ -1,297 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup Label="ProjectConfigurations">
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug Pro|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Debug Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug Pro|x64">
 | 
					 | 
				
			||||||
      <Configuration>Debug Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release Pro|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Release Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release Pro|x64">
 | 
					 | 
				
			||||||
      <Configuration>Release Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|x64">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|x64">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lapi.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lauxlib.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lbaselib.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lbitlib.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lcode.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lcorolib.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lctype.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\ldblib.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\ldebug.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\ldo.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\ldump.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lfunc.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lgc.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\linit.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\llex.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lmathlib.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lmem.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\loadlib.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lobject.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lopcodes.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\loslib.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lparser.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lpcap.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lpcode.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lpprint.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lptree.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lpvm.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lstate.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lstring.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lstrlib.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\ltable.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\ltablib.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\ltm.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lundump.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lutf8lib.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lvm.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lzio.c" />
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="Globals">
 | 
					 | 
				
			||||||
    <ProjectGuid>{57D2471B-3138-495E-AF18-6E290D098FFC}</ProjectGuid>
 | 
					 | 
				
			||||||
    <Keyword>Win32Proj</Keyword>
 | 
					 | 
				
			||||||
    <RootNamespace>lua</RootNamespace>
 | 
					 | 
				
			||||||
    <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionSettings">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="Shared">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="UserMacros" />
 | 
					 | 
				
			||||||
  <PropertyGroup />
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>LUA_COMPAT_5_2;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include\lua;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>LUA_COMPAT_5_2;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include\lua;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>LUA_COMPAT_5_2;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include\lua;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>LUA_COMPAT_5_2;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include\lua;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>LUA_COMPAT_5_2;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include\lua;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>LUA_COMPAT_5_2;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include\lua;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>LUA_COMPAT_5_2;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include\lua;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>LUA_COMPAT_5_2;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include\lua;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionTargets">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,127 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <Filter Include="lua">
 | 
					 | 
				
			||||||
      <UniqueIdentifier>{11fdcc17-fcff-49b3-a02a-4944ad26ce17}</UniqueIdentifier>
 | 
					 | 
				
			||||||
    </Filter>
 | 
					 | 
				
			||||||
    <Filter Include="lua\lib">
 | 
					 | 
				
			||||||
      <UniqueIdentifier>{5da24537-1b54-450f-a97d-dd0e4d1b62a8}</UniqueIdentifier>
 | 
					 | 
				
			||||||
    </Filter>
 | 
					 | 
				
			||||||
    <Filter Include="lpeg">
 | 
					 | 
				
			||||||
      <UniqueIdentifier>{b8388de1-c7fc-49ff-8421-8685878cb398}</UniqueIdentifier>
 | 
					 | 
				
			||||||
    </Filter>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lpcap.c">
 | 
					 | 
				
			||||||
      <Filter>lpeg</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lpprint.c">
 | 
					 | 
				
			||||||
      <Filter>lpeg</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lptree.c">
 | 
					 | 
				
			||||||
      <Filter>lpeg</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lpvm.c">
 | 
					 | 
				
			||||||
      <Filter>lpeg</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lauxlib.c">
 | 
					 | 
				
			||||||
      <Filter>lua\lib</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lbaselib.c">
 | 
					 | 
				
			||||||
      <Filter>lua\lib</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lapi.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lcode.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lctype.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\ldblib.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\ldebug.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\ldo.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\ldump.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lfunc.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lgc.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\linit.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\llex.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lmem.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\loadlib.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lobject.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lopcodes.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\loslib.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lparser.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lstate.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lstring.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\ltable.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\ltm.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lundump.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lvm.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lzio.c">
 | 
					 | 
				
			||||||
      <Filter>lua</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\ltablib.c">
 | 
					 | 
				
			||||||
      <Filter>lua\lib</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lstrlib.c">
 | 
					 | 
				
			||||||
      <Filter>lua\lib</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lmathlib.c">
 | 
					 | 
				
			||||||
      <Filter>lua\lib</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lcorolib.c">
 | 
					 | 
				
			||||||
      <Filter>lua\lib</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lbitlib.c">
 | 
					 | 
				
			||||||
      <Filter>lua\lib</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lutf8lib.c">
 | 
					 | 
				
			||||||
      <Filter>lua\lib</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\lua-5.3.1\src\lpcode.c">
 | 
					 | 
				
			||||||
      <Filter>lpeg</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,4 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <PropertyGroup />
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,157 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup Label="ProjectConfigurations">
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|x64">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|x64">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\externals\glew\glew.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\externals\stb_image\stb_image.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\externals\stb_image_write\stb_image_write.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\renderer_GLES_1.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\renderer_GLES_2.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\renderer_GLES_3.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\renderer_OpenGL_1.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\renderer_OpenGL_1_BASE.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\renderer_OpenGL_2.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\renderer_OpenGL_3.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\renderer_OpenGL_4.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\SDL_gpu.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\SDL_gpu_matrix.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\SDL_gpu_renderer.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\SDL_gpu_shapes.c" />
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="Globals">
 | 
					 | 
				
			||||||
    <ProjectGuid>{D0B6AE7F-601B-43F4-AFD3-C40136232595}</ProjectGuid>
 | 
					 | 
				
			||||||
    <Keyword>Win32Proj</Keyword>
 | 
					 | 
				
			||||||
    <RootNamespace>sdlgpu</RootNamespace>
 | 
					 | 
				
			||||||
    <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>Unicode</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>Unicode</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>Unicode</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>Unicode</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionSettings">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="Shared">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="UserMacros" />
 | 
					 | 
				
			||||||
  <PropertyGroup />
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>GLEW_STATIC;SDL_GPU_DISABLE_GLES;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\sdl-gpu\include;..\..\..\3rd-party\sdl-gpu\src;..\..\..\3rd-party\sdl-gpu\src\externals\glew;..\..\..\3rd-party\sdl-gpu\src\externals\glew\GL;..\..\..\3rd-party\sdl-gpu\src\externals\stb_image;..\..\..\3rd-party\sdl-gpu\src\externals\stb_image_write</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>GLEW_STATIC;SDL_GPU_DISABLE_GLES;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\sdl-gpu\include;..\..\..\3rd-party\sdl-gpu\src;..\..\..\3rd-party\sdl-gpu\src\externals\glew;..\..\..\3rd-party\sdl-gpu\src\externals\glew\GL;..\..\..\3rd-party\sdl-gpu\src\externals\stb_image;..\..\..\3rd-party\sdl-gpu\src\externals\stb_image_write</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_WINDOWS;GLEW_STATIC;SDL_GPU_DISABLE_GLES;STBI_FAILURE_USERMSG;SDL_GPU_USE_BUFFER_RESET;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\sdl-gpu\include;..\..\..\3rd-party\sdl-gpu\src;..\..\..\3rd-party\sdl-gpu\src\externals\glew;..\..\..\3rd-party\sdl-gpu\src\externals\glew\GL;..\..\..\3rd-party\sdl-gpu\src\externals\stb_image;..\..\..\3rd-party\sdl-gpu\src\externals\stb_image_write</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_WINDOWS;GLEW_STATIC;SDL_GPU_DISABLE_GLES;STBI_FAILURE_USERMSG;SDL_GPU_USE_BUFFER_RESET;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\sdl-gpu\include;..\..\..\3rd-party\sdl-gpu\src;..\..\..\3rd-party\sdl-gpu\src\externals\glew;..\..\..\3rd-party\sdl-gpu\src\externals\glew\GL;..\..\..\3rd-party\sdl-gpu\src\externals\stb_image;..\..\..\3rd-party\sdl-gpu\src\externals\stb_image_write</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionTargets">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,55 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <Filter Include="src">
 | 
					 | 
				
			||||||
      <UniqueIdentifier>{5d881051-9638-476c-95f1-3279cce1274e}</UniqueIdentifier>
 | 
					 | 
				
			||||||
    </Filter>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\renderer_GLES_1.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\renderer_GLES_2.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\renderer_GLES_3.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\renderer_OpenGL_1.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\renderer_OpenGL_1_BASE.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\renderer_OpenGL_2.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\renderer_OpenGL_3.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\renderer_OpenGL_4.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\SDL_gpu.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\SDL_gpu_matrix.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\SDL_gpu_renderer.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\SDL_gpu_shapes.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\externals\stb_image_write\stb_image_write.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\externals\stb_image\stb_image.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\sdl-gpu\src\externals\glew\glew.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,325 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup Label="ProjectConfigurations">
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug Pro|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Debug Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug Pro|x64">
 | 
					 | 
				
			||||||
      <Configuration>Debug Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release Pro|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Release Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release Pro|x64">
 | 
					 | 
				
			||||||
      <Configuration>Release Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|x64">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|x64">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="Globals">
 | 
					 | 
				
			||||||
    <ProjectGuid>{6181F6A6-AA1B-4CD2-B306-E242CFDE9B20}</ProjectGuid>
 | 
					 | 
				
			||||||
    <Keyword>Win32Proj</Keyword>
 | 
					 | 
				
			||||||
    <RootNamespace>studio</RootNamespace>
 | 
					 | 
				
			||||||
    <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>NotSet</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>NotSet</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>NotSet</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>NotSet</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>NotSet</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>NotSet</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>NotSet</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>NotSet</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionSettings">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="Shared">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="UserMacros" />
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <LinkIncremental>true</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'">
 | 
					 | 
				
			||||||
    <LinkIncremental>true</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <LinkIncremental>true</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'">
 | 
					 | 
				
			||||||
    <LinkIncremental>true</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <LinkIncremental>false</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'">
 | 
					 | 
				
			||||||
    <LinkIncremental>false</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <LinkIncremental>false</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'">
 | 
					 | 
				
			||||||
    <LinkIncremental>false</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;STUDIO_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\include;..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\zlib-1.2.8;..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\wren-0.1.0\src\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>TIC80_PRO;WIN32;_DEBUG;_WINDOWS;_USRDLL;STUDIO_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\include;..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\zlib-1.2.8;..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\wren-0.1.0\src\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_DEBUG;_WINDOWS;_USRDLL;STUDIO_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\include;..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\zlib-1.2.8;..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\wren-0.1.0\src\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>TIC80_PRO;_DEBUG;_WINDOWS;_USRDLL;STUDIO_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\include;..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\zlib-1.2.8;..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\wren-0.1.0\src\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;STUDIO_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\include;..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\zlib-1.2.8;..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\wren-0.1.0\src\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>TIC80_PRO;WIN32;NDEBUG;_WINDOWS;_USRDLL;STUDIO_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\include;..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\zlib-1.2.8;..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\wren-0.1.0\src\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>NDEBUG;_WINDOWS;_USRDLL;STUDIO_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\include;..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\zlib-1.2.8;..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\wren-0.1.0\src\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>TIC80_PRO;NDEBUG;_WINDOWS;_USRDLL;STUDIO_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\include;..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\zlib-1.2.8;..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\wren-0.1.0\src\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\code.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\config.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\console.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\dialog.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\ext\gif.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\ext\md5.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\fs.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\history.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\html.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\map.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\menu.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\music.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\run.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\sfx.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\sprite.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\start.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\studio.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\surf.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\tools.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\world.c" />
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ProjectReference Include="..\gif\gif.vcxproj">
 | 
					 | 
				
			||||||
      <Project>{6ea9d998-7557-4aed-abfc-142f9960c9b6}</Project>
 | 
					 | 
				
			||||||
    </ProjectReference>
 | 
					 | 
				
			||||||
    <ProjectReference Include="..\lua\lua.vcxproj">
 | 
					 | 
				
			||||||
      <Project>{57d2471b-3138-495e-af18-6e290d098ffc}</Project>
 | 
					 | 
				
			||||||
    </ProjectReference>
 | 
					 | 
				
			||||||
    <ProjectReference Include="..\tic80\tic80.vcxproj">
 | 
					 | 
				
			||||||
      <Project>{c4d8bc10-ebf6-42bb-9b5d-6712fb428a50}</Project>
 | 
					 | 
				
			||||||
    </ProjectReference>
 | 
					 | 
				
			||||||
    <ProjectReference Include="..\zlib\zlib.vcxproj">
 | 
					 | 
				
			||||||
      <Project>{1dfbdfa2-f204-42ff-b99e-250e4b2eba04}</Project>
 | 
					 | 
				
			||||||
    </ProjectReference>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionTargets">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,73 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <Filter Include="src">
 | 
					 | 
				
			||||||
      <UniqueIdentifier>{6c183603-0dc2-4093-91e5-1aba3b2b5d08}</UniqueIdentifier>
 | 
					 | 
				
			||||||
    </Filter>
 | 
					 | 
				
			||||||
    <Filter Include="src\ext">
 | 
					 | 
				
			||||||
      <UniqueIdentifier>{1410c434-08eb-4b70-a278-14955c0ecb28}</UniqueIdentifier>
 | 
					 | 
				
			||||||
    </Filter>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\code.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\config.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\console.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\dialog.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\fs.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\history.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\html.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\map.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\menu.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\music.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\run.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\sfx.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\sprite.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\start.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\studio.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\surf.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\tools.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\world.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\ext\md5.c">
 | 
					 | 
				
			||||||
      <Filter>src\ext</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\ext\gif.c">
 | 
					 | 
				
			||||||
      <Filter>src\ext</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,160 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup Label="ProjectConfigurations">
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|x64">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|x64">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="Globals">
 | 
					 | 
				
			||||||
    <ProjectGuid>{95A32262-B41A-4123-BD54-B26ED158CB29}</ProjectGuid>
 | 
					 | 
				
			||||||
    <Keyword>Win32Proj</Keyword>
 | 
					 | 
				
			||||||
    <RootNamespace>test</RootNamespace>
 | 
					 | 
				
			||||||
    <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>Unicode</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>Unicode</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>Unicode</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>Unicode</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionSettings">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="Shared">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="UserMacros" />
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <LinkIncremental>true</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <LinkIncremental>true</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <LinkIncremental>false</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <LinkIncremental>false</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include\gif;..\..\..\include\tic80;..\..\..\src;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Console</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include\gif;..\..\..\include\tic80;..\..\..\src;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Console</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include\gif;..\..\..\include\tic80;..\..\..\src;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Console</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include\gif;..\..\..\include\tic80;..\..\..\src;</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Console</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\ext\gif.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\tests\test_gif.c" />
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ProjectReference Include="..\gif\gif.vcxproj">
 | 
					 | 
				
			||||||
      <Project>{6ea9d998-7557-4aed-abfc-142f9960c9b6}</Project>
 | 
					 | 
				
			||||||
    </ProjectReference>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionTargets">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,7 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\tests\test_gif.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\ext\gif.c" />
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,19 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <LocalDebuggerWorkingDirectory>$(ProjectDir)..\..\..\tests</LocalDebuggerWorkingDirectory>
 | 
					 | 
				
			||||||
    <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <LocalDebuggerWorkingDirectory>$(ProjectDir)..\..\..\tests</LocalDebuggerWorkingDirectory>
 | 
					 | 
				
			||||||
    <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <LocalDebuggerWorkingDirectory>$(ProjectDir)..\..\..\tests</LocalDebuggerWorkingDirectory>
 | 
					 | 
				
			||||||
    <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <LocalDebuggerWorkingDirectory>$(ProjectDir)..\..\..\tests</LocalDebuggerWorkingDirectory>
 | 
					 | 
				
			||||||
    <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							| 
		 Before Width: | Height: | Size: 31 KiB  | 
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							@@ -1,229 +0,0 @@
 | 
				
			|||||||
 | 
					 | 
				
			||||||
Microsoft Visual Studio Solution File, Format Version 12.00
 | 
					 | 
				
			||||||
# Visual Studio 14
 | 
					 | 
				
			||||||
VisualStudioVersion = 14.0.25420.1
 | 
					 | 
				
			||||||
MinimumVisualStudioVersion = 10.0.40219.1
 | 
					 | 
				
			||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tic", "tic.vcxproj", "{B6ECC66E-26FA-42C2-8F6C-E4338424F38A}"
 | 
					 | 
				
			||||||
	ProjectSection(ProjectDependencies) = postProject
 | 
					 | 
				
			||||||
		{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122} = {D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}
 | 
					 | 
				
			||||||
	EndProjectSection
 | 
					 | 
				
			||||||
EndProject
 | 
					 | 
				
			||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lua", "..\lua\lua.vcxproj", "{57D2471B-3138-495E-AF18-6E290D098FFC}"
 | 
					 | 
				
			||||||
EndProject
 | 
					 | 
				
			||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlib", "..\zlib\zlib.vcxproj", "{1DFBDFA2-F204-42FF-B99E-250E4B2EBA04}"
 | 
					 | 
				
			||||||
EndProject
 | 
					 | 
				
			||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gif", "..\gif\gif.vcxproj", "{6EA9D998-7557-4AED-ABFC-142F9960C9B6}"
 | 
					 | 
				
			||||||
EndProject
 | 
					 | 
				
			||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tic80", "..\tic80\tic80.vcxproj", "{C4D8BC10-EBF6-42BB-9B5D-6712FB428A50}"
 | 
					 | 
				
			||||||
	ProjectSection(ProjectDependencies) = postProject
 | 
					 | 
				
			||||||
		{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122} = {D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}
 | 
					 | 
				
			||||||
	EndProjectSection
 | 
					 | 
				
			||||||
EndProject
 | 
					 | 
				
			||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example", "..\example\example.vcxproj", "{86CAA9C1-C61A-40D8-AC77-33D94754C824}"
 | 
					 | 
				
			||||||
EndProject
 | 
					 | 
				
			||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDL2", "..\..\..\3rd-party\SDL2-2.0.7\VisualC\SDL\SDL.vcxproj", "{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}"
 | 
					 | 
				
			||||||
EndProject
 | 
					 | 
				
			||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDL2main", "..\..\..\3rd-party\SDL2-2.0.7\VisualC\SDLmain\SDLmain.vcxproj", "{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}"
 | 
					 | 
				
			||||||
EndProject
 | 
					 | 
				
			||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wren_lib", "..\wren\wren_lib.vcxproj", "{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}"
 | 
					 | 
				
			||||||
EndProject
 | 
					 | 
				
			||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "studio", "..\studio\studio.vcxproj", "{6181F6A6-AA1B-4CD2-B306-E242CFDE9B20}"
 | 
					 | 
				
			||||||
EndProject
 | 
					 | 
				
			||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sdl-gpu", "..\sdl-gpu\sdl-gpu.vcxproj", "{D0B6AE7F-601B-43F4-AFD3-C40136232595}"
 | 
					 | 
				
			||||||
EndProject
 | 
					 | 
				
			||||||
Global
 | 
					 | 
				
			||||||
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
 | 
					 | 
				
			||||||
		Debug Pro|x64 = Debug Pro|x64
 | 
					 | 
				
			||||||
		Debug Pro|x86 = Debug Pro|x86
 | 
					 | 
				
			||||||
		Debug|x64 = Debug|x64
 | 
					 | 
				
			||||||
		Debug|x86 = Debug|x86
 | 
					 | 
				
			||||||
		Release Pro|x64 = Release Pro|x64
 | 
					 | 
				
			||||||
		Release Pro|x86 = Release Pro|x86
 | 
					 | 
				
			||||||
		Release|x64 = Release|x64
 | 
					 | 
				
			||||||
		Release|x86 = Release|x86
 | 
					 | 
				
			||||||
	EndGlobalSection
 | 
					 | 
				
			||||||
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
 | 
					 | 
				
			||||||
		{B6ECC66E-26FA-42C2-8F6C-E4338424F38A}.Debug Pro|x64.ActiveCfg = Debug Pro|x64
 | 
					 | 
				
			||||||
		{B6ECC66E-26FA-42C2-8F6C-E4338424F38A}.Debug Pro|x64.Build.0 = Debug Pro|x64
 | 
					 | 
				
			||||||
		{B6ECC66E-26FA-42C2-8F6C-E4338424F38A}.Debug Pro|x86.ActiveCfg = Debug Pro|Win32
 | 
					 | 
				
			||||||
		{B6ECC66E-26FA-42C2-8F6C-E4338424F38A}.Debug Pro|x86.Build.0 = Debug Pro|Win32
 | 
					 | 
				
			||||||
		{B6ECC66E-26FA-42C2-8F6C-E4338424F38A}.Debug|x64.ActiveCfg = Debug|x64
 | 
					 | 
				
			||||||
		{B6ECC66E-26FA-42C2-8F6C-E4338424F38A}.Debug|x64.Build.0 = Debug|x64
 | 
					 | 
				
			||||||
		{B6ECC66E-26FA-42C2-8F6C-E4338424F38A}.Debug|x86.ActiveCfg = Debug|Win32
 | 
					 | 
				
			||||||
		{B6ECC66E-26FA-42C2-8F6C-E4338424F38A}.Debug|x86.Build.0 = Debug|Win32
 | 
					 | 
				
			||||||
		{B6ECC66E-26FA-42C2-8F6C-E4338424F38A}.Release Pro|x64.ActiveCfg = Release Pro|x64
 | 
					 | 
				
			||||||
		{B6ECC66E-26FA-42C2-8F6C-E4338424F38A}.Release Pro|x64.Build.0 = Release Pro|x64
 | 
					 | 
				
			||||||
		{B6ECC66E-26FA-42C2-8F6C-E4338424F38A}.Release Pro|x86.ActiveCfg = Release Pro|Win32
 | 
					 | 
				
			||||||
		{B6ECC66E-26FA-42C2-8F6C-E4338424F38A}.Release Pro|x86.Build.0 = Release Pro|Win32
 | 
					 | 
				
			||||||
		{B6ECC66E-26FA-42C2-8F6C-E4338424F38A}.Release|x64.ActiveCfg = Release|x64
 | 
					 | 
				
			||||||
		{B6ECC66E-26FA-42C2-8F6C-E4338424F38A}.Release|x64.Build.0 = Release|x64
 | 
					 | 
				
			||||||
		{B6ECC66E-26FA-42C2-8F6C-E4338424F38A}.Release|x86.ActiveCfg = Release|Win32
 | 
					 | 
				
			||||||
		{B6ECC66E-26FA-42C2-8F6C-E4338424F38A}.Release|x86.Build.0 = Release|Win32
 | 
					 | 
				
			||||||
		{57D2471B-3138-495E-AF18-6E290D098FFC}.Debug Pro|x64.ActiveCfg = Debug Pro|x64
 | 
					 | 
				
			||||||
		{57D2471B-3138-495E-AF18-6E290D098FFC}.Debug Pro|x64.Build.0 = Debug Pro|x64
 | 
					 | 
				
			||||||
		{57D2471B-3138-495E-AF18-6E290D098FFC}.Debug Pro|x86.ActiveCfg = Debug Pro|Win32
 | 
					 | 
				
			||||||
		{57D2471B-3138-495E-AF18-6E290D098FFC}.Debug Pro|x86.Build.0 = Debug Pro|Win32
 | 
					 | 
				
			||||||
		{57D2471B-3138-495E-AF18-6E290D098FFC}.Debug|x64.ActiveCfg = Debug|x64
 | 
					 | 
				
			||||||
		{57D2471B-3138-495E-AF18-6E290D098FFC}.Debug|x64.Build.0 = Debug|x64
 | 
					 | 
				
			||||||
		{57D2471B-3138-495E-AF18-6E290D098FFC}.Debug|x86.ActiveCfg = Debug|Win32
 | 
					 | 
				
			||||||
		{57D2471B-3138-495E-AF18-6E290D098FFC}.Debug|x86.Build.0 = Debug|Win32
 | 
					 | 
				
			||||||
		{57D2471B-3138-495E-AF18-6E290D098FFC}.Release Pro|x64.ActiveCfg = Release Pro|x64
 | 
					 | 
				
			||||||
		{57D2471B-3138-495E-AF18-6E290D098FFC}.Release Pro|x64.Build.0 = Release Pro|x64
 | 
					 | 
				
			||||||
		{57D2471B-3138-495E-AF18-6E290D098FFC}.Release Pro|x86.ActiveCfg = Release Pro|Win32
 | 
					 | 
				
			||||||
		{57D2471B-3138-495E-AF18-6E290D098FFC}.Release Pro|x86.Build.0 = Release Pro|Win32
 | 
					 | 
				
			||||||
		{57D2471B-3138-495E-AF18-6E290D098FFC}.Release|x64.ActiveCfg = Release|x64
 | 
					 | 
				
			||||||
		{57D2471B-3138-495E-AF18-6E290D098FFC}.Release|x64.Build.0 = Release|x64
 | 
					 | 
				
			||||||
		{57D2471B-3138-495E-AF18-6E290D098FFC}.Release|x86.ActiveCfg = Release|Win32
 | 
					 | 
				
			||||||
		{57D2471B-3138-495E-AF18-6E290D098FFC}.Release|x86.Build.0 = Release|Win32
 | 
					 | 
				
			||||||
		{1DFBDFA2-F204-42FF-B99E-250E4B2EBA04}.Debug Pro|x64.ActiveCfg = Debug Pro|x64
 | 
					 | 
				
			||||||
		{1DFBDFA2-F204-42FF-B99E-250E4B2EBA04}.Debug Pro|x64.Build.0 = Debug Pro|x64
 | 
					 | 
				
			||||||
		{1DFBDFA2-F204-42FF-B99E-250E4B2EBA04}.Debug Pro|x86.ActiveCfg = Debug Pro|Win32
 | 
					 | 
				
			||||||
		{1DFBDFA2-F204-42FF-B99E-250E4B2EBA04}.Debug Pro|x86.Build.0 = Debug Pro|Win32
 | 
					 | 
				
			||||||
		{1DFBDFA2-F204-42FF-B99E-250E4B2EBA04}.Debug|x64.ActiveCfg = Debug|x64
 | 
					 | 
				
			||||||
		{1DFBDFA2-F204-42FF-B99E-250E4B2EBA04}.Debug|x64.Build.0 = Debug|x64
 | 
					 | 
				
			||||||
		{1DFBDFA2-F204-42FF-B99E-250E4B2EBA04}.Debug|x86.ActiveCfg = Debug|Win32
 | 
					 | 
				
			||||||
		{1DFBDFA2-F204-42FF-B99E-250E4B2EBA04}.Debug|x86.Build.0 = Debug|Win32
 | 
					 | 
				
			||||||
		{1DFBDFA2-F204-42FF-B99E-250E4B2EBA04}.Release Pro|x64.ActiveCfg = Release Pro|x64
 | 
					 | 
				
			||||||
		{1DFBDFA2-F204-42FF-B99E-250E4B2EBA04}.Release Pro|x64.Build.0 = Release Pro|x64
 | 
					 | 
				
			||||||
		{1DFBDFA2-F204-42FF-B99E-250E4B2EBA04}.Release Pro|x86.ActiveCfg = Release Pro|Win32
 | 
					 | 
				
			||||||
		{1DFBDFA2-F204-42FF-B99E-250E4B2EBA04}.Release Pro|x86.Build.0 = Release Pro|Win32
 | 
					 | 
				
			||||||
		{1DFBDFA2-F204-42FF-B99E-250E4B2EBA04}.Release|x64.ActiveCfg = Release|x64
 | 
					 | 
				
			||||||
		{1DFBDFA2-F204-42FF-B99E-250E4B2EBA04}.Release|x64.Build.0 = Release|x64
 | 
					 | 
				
			||||||
		{1DFBDFA2-F204-42FF-B99E-250E4B2EBA04}.Release|x86.ActiveCfg = Release|Win32
 | 
					 | 
				
			||||||
		{1DFBDFA2-F204-42FF-B99E-250E4B2EBA04}.Release|x86.Build.0 = Release|Win32
 | 
					 | 
				
			||||||
		{6EA9D998-7557-4AED-ABFC-142F9960C9B6}.Debug Pro|x64.ActiveCfg = Debug Pro|x64
 | 
					 | 
				
			||||||
		{6EA9D998-7557-4AED-ABFC-142F9960C9B6}.Debug Pro|x64.Build.0 = Debug Pro|x64
 | 
					 | 
				
			||||||
		{6EA9D998-7557-4AED-ABFC-142F9960C9B6}.Debug Pro|x86.ActiveCfg = Debug Pro|Win32
 | 
					 | 
				
			||||||
		{6EA9D998-7557-4AED-ABFC-142F9960C9B6}.Debug Pro|x86.Build.0 = Debug Pro|Win32
 | 
					 | 
				
			||||||
		{6EA9D998-7557-4AED-ABFC-142F9960C9B6}.Debug|x64.ActiveCfg = Debug|x64
 | 
					 | 
				
			||||||
		{6EA9D998-7557-4AED-ABFC-142F9960C9B6}.Debug|x64.Build.0 = Debug|x64
 | 
					 | 
				
			||||||
		{6EA9D998-7557-4AED-ABFC-142F9960C9B6}.Debug|x86.ActiveCfg = Debug|Win32
 | 
					 | 
				
			||||||
		{6EA9D998-7557-4AED-ABFC-142F9960C9B6}.Debug|x86.Build.0 = Debug|Win32
 | 
					 | 
				
			||||||
		{6EA9D998-7557-4AED-ABFC-142F9960C9B6}.Release Pro|x64.ActiveCfg = Release Pro|x64
 | 
					 | 
				
			||||||
		{6EA9D998-7557-4AED-ABFC-142F9960C9B6}.Release Pro|x64.Build.0 = Release Pro|x64
 | 
					 | 
				
			||||||
		{6EA9D998-7557-4AED-ABFC-142F9960C9B6}.Release Pro|x86.ActiveCfg = Release Pro|Win32
 | 
					 | 
				
			||||||
		{6EA9D998-7557-4AED-ABFC-142F9960C9B6}.Release Pro|x86.Build.0 = Release Pro|Win32
 | 
					 | 
				
			||||||
		{6EA9D998-7557-4AED-ABFC-142F9960C9B6}.Release|x64.ActiveCfg = Release|x64
 | 
					 | 
				
			||||||
		{6EA9D998-7557-4AED-ABFC-142F9960C9B6}.Release|x64.Build.0 = Release|x64
 | 
					 | 
				
			||||||
		{6EA9D998-7557-4AED-ABFC-142F9960C9B6}.Release|x86.ActiveCfg = Release|Win32
 | 
					 | 
				
			||||||
		{6EA9D998-7557-4AED-ABFC-142F9960C9B6}.Release|x86.Build.0 = Release|Win32
 | 
					 | 
				
			||||||
		{C4D8BC10-EBF6-42BB-9B5D-6712FB428A50}.Debug Pro|x64.ActiveCfg = Debug Pro|x64
 | 
					 | 
				
			||||||
		{C4D8BC10-EBF6-42BB-9B5D-6712FB428A50}.Debug Pro|x64.Build.0 = Debug Pro|x64
 | 
					 | 
				
			||||||
		{C4D8BC10-EBF6-42BB-9B5D-6712FB428A50}.Debug Pro|x86.ActiveCfg = Debug Pro|Win32
 | 
					 | 
				
			||||||
		{C4D8BC10-EBF6-42BB-9B5D-6712FB428A50}.Debug Pro|x86.Build.0 = Debug Pro|Win32
 | 
					 | 
				
			||||||
		{C4D8BC10-EBF6-42BB-9B5D-6712FB428A50}.Debug|x64.ActiveCfg = Debug|x64
 | 
					 | 
				
			||||||
		{C4D8BC10-EBF6-42BB-9B5D-6712FB428A50}.Debug|x64.Build.0 = Debug|x64
 | 
					 | 
				
			||||||
		{C4D8BC10-EBF6-42BB-9B5D-6712FB428A50}.Debug|x86.ActiveCfg = Debug|Win32
 | 
					 | 
				
			||||||
		{C4D8BC10-EBF6-42BB-9B5D-6712FB428A50}.Debug|x86.Build.0 = Debug|Win32
 | 
					 | 
				
			||||||
		{C4D8BC10-EBF6-42BB-9B5D-6712FB428A50}.Release Pro|x64.ActiveCfg = Release Pro|x64
 | 
					 | 
				
			||||||
		{C4D8BC10-EBF6-42BB-9B5D-6712FB428A50}.Release Pro|x64.Build.0 = Release Pro|x64
 | 
					 | 
				
			||||||
		{C4D8BC10-EBF6-42BB-9B5D-6712FB428A50}.Release Pro|x86.ActiveCfg = Release Pro|Win32
 | 
					 | 
				
			||||||
		{C4D8BC10-EBF6-42BB-9B5D-6712FB428A50}.Release Pro|x86.Build.0 = Release Pro|Win32
 | 
					 | 
				
			||||||
		{C4D8BC10-EBF6-42BB-9B5D-6712FB428A50}.Release|x64.ActiveCfg = Release|x64
 | 
					 | 
				
			||||||
		{C4D8BC10-EBF6-42BB-9B5D-6712FB428A50}.Release|x64.Build.0 = Release|x64
 | 
					 | 
				
			||||||
		{C4D8BC10-EBF6-42BB-9B5D-6712FB428A50}.Release|x86.ActiveCfg = Release|Win32
 | 
					 | 
				
			||||||
		{C4D8BC10-EBF6-42BB-9B5D-6712FB428A50}.Release|x86.Build.0 = Release|Win32
 | 
					 | 
				
			||||||
		{86CAA9C1-C61A-40D8-AC77-33D94754C824}.Debug Pro|x64.ActiveCfg = Debug Pro|x64
 | 
					 | 
				
			||||||
		{86CAA9C1-C61A-40D8-AC77-33D94754C824}.Debug Pro|x64.Build.0 = Debug Pro|x64
 | 
					 | 
				
			||||||
		{86CAA9C1-C61A-40D8-AC77-33D94754C824}.Debug Pro|x86.ActiveCfg = Debug Pro|Win32
 | 
					 | 
				
			||||||
		{86CAA9C1-C61A-40D8-AC77-33D94754C824}.Debug Pro|x86.Build.0 = Debug Pro|Win32
 | 
					 | 
				
			||||||
		{86CAA9C1-C61A-40D8-AC77-33D94754C824}.Debug|x64.ActiveCfg = Debug|x64
 | 
					 | 
				
			||||||
		{86CAA9C1-C61A-40D8-AC77-33D94754C824}.Debug|x64.Build.0 = Debug|x64
 | 
					 | 
				
			||||||
		{86CAA9C1-C61A-40D8-AC77-33D94754C824}.Debug|x86.ActiveCfg = Debug|Win32
 | 
					 | 
				
			||||||
		{86CAA9C1-C61A-40D8-AC77-33D94754C824}.Debug|x86.Build.0 = Debug|Win32
 | 
					 | 
				
			||||||
		{86CAA9C1-C61A-40D8-AC77-33D94754C824}.Release Pro|x64.ActiveCfg = Release Pro|x64
 | 
					 | 
				
			||||||
		{86CAA9C1-C61A-40D8-AC77-33D94754C824}.Release Pro|x64.Build.0 = Release Pro|x64
 | 
					 | 
				
			||||||
		{86CAA9C1-C61A-40D8-AC77-33D94754C824}.Release Pro|x86.ActiveCfg = Release Pro|Win32
 | 
					 | 
				
			||||||
		{86CAA9C1-C61A-40D8-AC77-33D94754C824}.Release Pro|x86.Build.0 = Release Pro|Win32
 | 
					 | 
				
			||||||
		{86CAA9C1-C61A-40D8-AC77-33D94754C824}.Release|x64.ActiveCfg = Release|x64
 | 
					 | 
				
			||||||
		{86CAA9C1-C61A-40D8-AC77-33D94754C824}.Release|x64.Build.0 = Release|x64
 | 
					 | 
				
			||||||
		{86CAA9C1-C61A-40D8-AC77-33D94754C824}.Release|x86.ActiveCfg = Release|Win32
 | 
					 | 
				
			||||||
		{86CAA9C1-C61A-40D8-AC77-33D94754C824}.Release|x86.Build.0 = Release|Win32
 | 
					 | 
				
			||||||
		{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug Pro|x64.ActiveCfg = Debug|x64
 | 
					 | 
				
			||||||
		{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug Pro|x64.Build.0 = Debug|x64
 | 
					 | 
				
			||||||
		{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug Pro|x86.ActiveCfg = Debug|Win32
 | 
					 | 
				
			||||||
		{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug Pro|x86.Build.0 = Debug|Win32
 | 
					 | 
				
			||||||
		{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|x64.ActiveCfg = Debug|x64
 | 
					 | 
				
			||||||
		{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|x64.Build.0 = Debug|x64
 | 
					 | 
				
			||||||
		{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|x86.ActiveCfg = Debug|Win32
 | 
					 | 
				
			||||||
		{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|x86.Build.0 = Debug|Win32
 | 
					 | 
				
			||||||
		{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release Pro|x64.ActiveCfg = Release|x64
 | 
					 | 
				
			||||||
		{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release Pro|x64.Build.0 = Release|x64
 | 
					 | 
				
			||||||
		{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release Pro|x86.ActiveCfg = Release|Win32
 | 
					 | 
				
			||||||
		{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release Pro|x86.Build.0 = Release|Win32
 | 
					 | 
				
			||||||
		{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|x64.ActiveCfg = Release|x64
 | 
					 | 
				
			||||||
		{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|x64.Build.0 = Release|x64
 | 
					 | 
				
			||||||
		{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|x86.ActiveCfg = Release|Win32
 | 
					 | 
				
			||||||
		{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|x86.Build.0 = Release|Win32
 | 
					 | 
				
			||||||
		{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug Pro|x64.ActiveCfg = Debug|x64
 | 
					 | 
				
			||||||
		{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug Pro|x64.Build.0 = Debug|x64
 | 
					 | 
				
			||||||
		{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug Pro|x86.ActiveCfg = Debug|Win32
 | 
					 | 
				
			||||||
		{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug Pro|x86.Build.0 = Debug|Win32
 | 
					 | 
				
			||||||
		{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|x64.ActiveCfg = Debug|x64
 | 
					 | 
				
			||||||
		{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|x64.Build.0 = Debug|x64
 | 
					 | 
				
			||||||
		{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|x86.ActiveCfg = Debug|Win32
 | 
					 | 
				
			||||||
		{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|x86.Build.0 = Debug|Win32
 | 
					 | 
				
			||||||
		{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release Pro|x64.ActiveCfg = Release|x64
 | 
					 | 
				
			||||||
		{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release Pro|x64.Build.0 = Release|x64
 | 
					 | 
				
			||||||
		{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release Pro|x86.ActiveCfg = Release|Win32
 | 
					 | 
				
			||||||
		{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release Pro|x86.Build.0 = Release|Win32
 | 
					 | 
				
			||||||
		{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|x64.ActiveCfg = Release|x64
 | 
					 | 
				
			||||||
		{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|x64.Build.0 = Release|x64
 | 
					 | 
				
			||||||
		{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|x86.ActiveCfg = Release|Win32
 | 
					 | 
				
			||||||
		{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|x86.Build.0 = Release|Win32
 | 
					 | 
				
			||||||
		{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}.Debug Pro|x64.ActiveCfg = Debug|x64
 | 
					 | 
				
			||||||
		{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}.Debug Pro|x64.Build.0 = Debug|x64
 | 
					 | 
				
			||||||
		{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}.Debug Pro|x86.ActiveCfg = Debug|Win32
 | 
					 | 
				
			||||||
		{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}.Debug Pro|x86.Build.0 = Debug|Win32
 | 
					 | 
				
			||||||
		{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}.Debug|x64.ActiveCfg = Debug|x64
 | 
					 | 
				
			||||||
		{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}.Debug|x64.Build.0 = Debug|x64
 | 
					 | 
				
			||||||
		{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}.Debug|x86.ActiveCfg = Debug|Win32
 | 
					 | 
				
			||||||
		{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}.Debug|x86.Build.0 = Debug|Win32
 | 
					 | 
				
			||||||
		{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}.Release Pro|x64.ActiveCfg = Release|x64
 | 
					 | 
				
			||||||
		{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}.Release Pro|x64.Build.0 = Release|x64
 | 
					 | 
				
			||||||
		{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}.Release Pro|x86.ActiveCfg = Release|Win32
 | 
					 | 
				
			||||||
		{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}.Release Pro|x86.Build.0 = Release|Win32
 | 
					 | 
				
			||||||
		{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}.Release|x64.ActiveCfg = Release|x64
 | 
					 | 
				
			||||||
		{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}.Release|x64.Build.0 = Release|x64
 | 
					 | 
				
			||||||
		{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}.Release|x86.ActiveCfg = Release|Win32
 | 
					 | 
				
			||||||
		{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}.Release|x86.Build.0 = Release|Win32
 | 
					 | 
				
			||||||
		{6181F6A6-AA1B-4CD2-B306-E242CFDE9B20}.Debug Pro|x64.ActiveCfg = Debug Pro|x64
 | 
					 | 
				
			||||||
		{6181F6A6-AA1B-4CD2-B306-E242CFDE9B20}.Debug Pro|x64.Build.0 = Debug Pro|x64
 | 
					 | 
				
			||||||
		{6181F6A6-AA1B-4CD2-B306-E242CFDE9B20}.Debug Pro|x86.ActiveCfg = Debug Pro|Win32
 | 
					 | 
				
			||||||
		{6181F6A6-AA1B-4CD2-B306-E242CFDE9B20}.Debug Pro|x86.Build.0 = Debug Pro|Win32
 | 
					 | 
				
			||||||
		{6181F6A6-AA1B-4CD2-B306-E242CFDE9B20}.Debug|x64.ActiveCfg = Debug|x64
 | 
					 | 
				
			||||||
		{6181F6A6-AA1B-4CD2-B306-E242CFDE9B20}.Debug|x64.Build.0 = Debug|x64
 | 
					 | 
				
			||||||
		{6181F6A6-AA1B-4CD2-B306-E242CFDE9B20}.Debug|x86.ActiveCfg = Debug|Win32
 | 
					 | 
				
			||||||
		{6181F6A6-AA1B-4CD2-B306-E242CFDE9B20}.Debug|x86.Build.0 = Debug|Win32
 | 
					 | 
				
			||||||
		{6181F6A6-AA1B-4CD2-B306-E242CFDE9B20}.Release Pro|x64.ActiveCfg = Release Pro|x64
 | 
					 | 
				
			||||||
		{6181F6A6-AA1B-4CD2-B306-E242CFDE9B20}.Release Pro|x64.Build.0 = Release Pro|x64
 | 
					 | 
				
			||||||
		{6181F6A6-AA1B-4CD2-B306-E242CFDE9B20}.Release Pro|x86.ActiveCfg = Release Pro|Win32
 | 
					 | 
				
			||||||
		{6181F6A6-AA1B-4CD2-B306-E242CFDE9B20}.Release Pro|x86.Build.0 = Release Pro|Win32
 | 
					 | 
				
			||||||
		{6181F6A6-AA1B-4CD2-B306-E242CFDE9B20}.Release|x64.ActiveCfg = Release|x64
 | 
					 | 
				
			||||||
		{6181F6A6-AA1B-4CD2-B306-E242CFDE9B20}.Release|x64.Build.0 = Release|x64
 | 
					 | 
				
			||||||
		{6181F6A6-AA1B-4CD2-B306-E242CFDE9B20}.Release|x86.ActiveCfg = Release|Win32
 | 
					 | 
				
			||||||
		{6181F6A6-AA1B-4CD2-B306-E242CFDE9B20}.Release|x86.Build.0 = Release|Win32
 | 
					 | 
				
			||||||
		{D0B6AE7F-601B-43F4-AFD3-C40136232595}.Debug Pro|x64.ActiveCfg = Debug|x64
 | 
					 | 
				
			||||||
		{D0B6AE7F-601B-43F4-AFD3-C40136232595}.Debug Pro|x64.Build.0 = Debug|x64
 | 
					 | 
				
			||||||
		{D0B6AE7F-601B-43F4-AFD3-C40136232595}.Debug Pro|x86.ActiveCfg = Debug|Win32
 | 
					 | 
				
			||||||
		{D0B6AE7F-601B-43F4-AFD3-C40136232595}.Debug Pro|x86.Build.0 = Debug|Win32
 | 
					 | 
				
			||||||
		{D0B6AE7F-601B-43F4-AFD3-C40136232595}.Debug|x64.ActiveCfg = Debug|x64
 | 
					 | 
				
			||||||
		{D0B6AE7F-601B-43F4-AFD3-C40136232595}.Debug|x64.Build.0 = Debug|x64
 | 
					 | 
				
			||||||
		{D0B6AE7F-601B-43F4-AFD3-C40136232595}.Debug|x86.ActiveCfg = Debug|Win32
 | 
					 | 
				
			||||||
		{D0B6AE7F-601B-43F4-AFD3-C40136232595}.Debug|x86.Build.0 = Debug|Win32
 | 
					 | 
				
			||||||
		{D0B6AE7F-601B-43F4-AFD3-C40136232595}.Release Pro|x64.ActiveCfg = Release|x64
 | 
					 | 
				
			||||||
		{D0B6AE7F-601B-43F4-AFD3-C40136232595}.Release Pro|x64.Build.0 = Release|x64
 | 
					 | 
				
			||||||
		{D0B6AE7F-601B-43F4-AFD3-C40136232595}.Release Pro|x86.ActiveCfg = Release|Win32
 | 
					 | 
				
			||||||
		{D0B6AE7F-601B-43F4-AFD3-C40136232595}.Release Pro|x86.Build.0 = Release|Win32
 | 
					 | 
				
			||||||
		{D0B6AE7F-601B-43F4-AFD3-C40136232595}.Release|x64.ActiveCfg = Release|x64
 | 
					 | 
				
			||||||
		{D0B6AE7F-601B-43F4-AFD3-C40136232595}.Release|x64.Build.0 = Release|x64
 | 
					 | 
				
			||||||
		{D0B6AE7F-601B-43F4-AFD3-C40136232595}.Release|x86.ActiveCfg = Release|Win32
 | 
					 | 
				
			||||||
		{D0B6AE7F-601B-43F4-AFD3-C40136232595}.Release|x86.Build.0 = Release|Win32
 | 
					 | 
				
			||||||
	EndGlobalSection
 | 
					 | 
				
			||||||
	GlobalSection(SolutionProperties) = preSolution
 | 
					 | 
				
			||||||
		HideSolutionNode = FALSE
 | 
					 | 
				
			||||||
	EndGlobalSection
 | 
					 | 
				
			||||||
	GlobalSection(ExtensibilityGlobals) = postSolution
 | 
					 | 
				
			||||||
		SolutionGuid = {00596857-9AA6-41D1-915F-305DA18C13AE}
 | 
					 | 
				
			||||||
	EndGlobalSection
 | 
					 | 
				
			||||||
EndGlobal
 | 
					 | 
				
			||||||
@@ -1,337 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup Label="ProjectConfigurations">
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug Pro|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Debug Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug Pro|x64">
 | 
					 | 
				
			||||||
      <Configuration>Debug Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release Pro|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Release Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release Pro|x64">
 | 
					 | 
				
			||||||
      <Configuration>Release Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|x64">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|x64">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ProjectReference Include="..\..\..\3rd-party\SDL2-2.0.7\VisualC\SDLmain\SDLmain.vcxproj">
 | 
					 | 
				
			||||||
      <Project>{da956fd3-e142-46f2-9dd5-c78bebb56b7a}</Project>
 | 
					 | 
				
			||||||
    </ProjectReference>
 | 
					 | 
				
			||||||
    <ProjectReference Include="..\..\..\3rd-party\SDL2-2.0.7\VisualC\SDL\SDL.vcxproj">
 | 
					 | 
				
			||||||
      <Project>{81ce8daf-ebb2-4761-8e45-b71abcca8c68}</Project>
 | 
					 | 
				
			||||||
    </ProjectReference>
 | 
					 | 
				
			||||||
    <ProjectReference Include="..\sdl-gpu\sdl-gpu.vcxproj">
 | 
					 | 
				
			||||||
      <Project>{d0b6ae7f-601b-43f4-afd3-c40136232595}</Project>
 | 
					 | 
				
			||||||
    </ProjectReference>
 | 
					 | 
				
			||||||
    <ProjectReference Include="..\studio\studio.vcxproj">
 | 
					 | 
				
			||||||
      <Project>{6181f6a6-aa1b-4cd2-b306-e242cfde9b20}</Project>
 | 
					 | 
				
			||||||
    </ProjectReference>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\SDL2_net-2.0.1\SDLnet.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\SDL2_net-2.0.1\SDLnetselect.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\SDL2_net-2.0.1\SDLnetTCP.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\ext\file_dialog.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\net.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\system.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\tools.c" />
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <Image Include="icon.ico" />
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClInclude Include="resource.h" />
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ResourceCompile Include="tic.rc" />
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="Globals">
 | 
					 | 
				
			||||||
    <ProjectGuid>{B6ECC66E-26FA-42C2-8F6C-E4338424F38A}</ProjectGuid>
 | 
					 | 
				
			||||||
    <Keyword>Win32Proj</Keyword>
 | 
					 | 
				
			||||||
    <RootNamespace>tic</RootNamespace>
 | 
					 | 
				
			||||||
    <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>Application</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionSettings">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="Shared">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="UserMacros" />
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <LinkIncremental>true</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'">
 | 
					 | 
				
			||||||
    <LinkIncremental>true</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <LinkIncremental>true</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'">
 | 
					 | 
				
			||||||
    <LinkIncremental>true</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <LinkIncremental>false</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'">
 | 
					 | 
				
			||||||
    <LinkIncremental>false</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <LinkIncremental>false</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'">
 | 
					 | 
				
			||||||
    <LinkIncremental>false</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;LUA_COMPAT_5_2;WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\include;..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\zlib-1.2.8;..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\SDL2_net-2.0.1;..\..\..\3rd-party\wren-0.1.0\src\include;..\..\..\3rd-party\sdl-gpu\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
      <AdditionalDependencies>opengl32.lib;ws2_32.lib;version.lib;Imm32.lib;Winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
 | 
					 | 
				
			||||||
      <AdditionalLibraryDirectories>..\..\..\lib\windows</AdditionalLibraryDirectories>
 | 
					 | 
				
			||||||
      <OutputFile>$(OutDir)tic80$(TargetExt)</OutputFile>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>TIC80_PRO;_CRT_SECURE_NO_WARNINGS;LUA_COMPAT_5_2;WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\include;..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\zlib-1.2.8;..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\SDL2_net-2.0.1;..\..\..\3rd-party\wren-0.1.0\src\include;..\..\..\3rd-party\sdl-gpu\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
      <AdditionalDependencies>opengl32.lib;ws2_32.lib;version.lib;Imm32.lib;Winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
 | 
					 | 
				
			||||||
      <AdditionalLibraryDirectories>..\..\..\lib\windows</AdditionalLibraryDirectories>
 | 
					 | 
				
			||||||
      <OutputFile>$(OutDir)tic80$(TargetExt)</OutputFile>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;LUA_COMPAT_5_2;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\include;..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\zlib-1.2.8;..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\SDL2_net-2.0.1;..\..\..\3rd-party\wren-0.1.0\src\include;..\..\..\3rd-party\sdl-gpu\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
      <AdditionalDependencies>opengl32.lib;ws2_32.lib;version.lib;Imm32.lib;Winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
 | 
					 | 
				
			||||||
      <AdditionalLibraryDirectories>..\..\..\lib\windows</AdditionalLibraryDirectories>
 | 
					 | 
				
			||||||
      <OutputFile>$(OutDir)tic80$(TargetExt)</OutputFile>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>TIC80_PRO;_CRT_SECURE_NO_WARNINGS;LUA_COMPAT_5_2;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\include;..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\zlib-1.2.8;..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\SDL2_net-2.0.1;..\..\..\3rd-party\wren-0.1.0\src\include;..\..\..\3rd-party\sdl-gpu\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
      <AdditionalDependencies>opengl32.lib;ws2_32.lib;version.lib;Imm32.lib;Winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
 | 
					 | 
				
			||||||
      <AdditionalLibraryDirectories>..\..\..\lib\windows</AdditionalLibraryDirectories>
 | 
					 | 
				
			||||||
      <OutputFile>$(OutDir)tic80$(TargetExt)</OutputFile>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;LUA_COMPAT_5_2;WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\include;..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\zlib-1.2.8;..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\SDL2_net-2.0.1;..\..\..\3rd-party\wren-0.1.0\src\include;..\..\..\3rd-party\sdl-gpu\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
      <AdditionalDependencies>opengl32.lib;ws2_32.lib;version.lib;Imm32.lib;Winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
 | 
					 | 
				
			||||||
      <AdditionalLibraryDirectories>..\..\..\lib\windows</AdditionalLibraryDirectories>
 | 
					 | 
				
			||||||
      <OutputFile>$(OutDir)tic80$(TargetExt)</OutputFile>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>TIC80_PRO;_CRT_SECURE_NO_WARNINGS;LUA_COMPAT_5_2;WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\include;..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\zlib-1.2.8;..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\SDL2_net-2.0.1;..\..\..\3rd-party\wren-0.1.0\src\include;..\..\..\3rd-party\sdl-gpu\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
      <AdditionalDependencies>opengl32.lib;ws2_32.lib;version.lib;Imm32.lib;Winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
 | 
					 | 
				
			||||||
      <AdditionalLibraryDirectories>..\..\..\lib\windows</AdditionalLibraryDirectories>
 | 
					 | 
				
			||||||
      <OutputFile>$(OutDir)tic80$(TargetExt)</OutputFile>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;LUA_COMPAT_5_2;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\include;..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\zlib-1.2.8;..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\SDL2_net-2.0.1;..\..\..\3rd-party\wren-0.1.0\src\include;..\..\..\3rd-party\sdl-gpu\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
      <AdditionalDependencies>opengl32.lib;ws2_32.lib;version.lib;Imm32.lib;Winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
 | 
					 | 
				
			||||||
      <AdditionalLibraryDirectories>..\..\..\lib\windows</AdditionalLibraryDirectories>
 | 
					 | 
				
			||||||
      <OutputFile>$(OutDir)tic80$(TargetExt)</OutputFile>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>TIC80_PRO;_CRT_SECURE_NO_WARNINGS;LUA_COMPAT_5_2;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\include;..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\zlib-1.2.8;..\..\..\3rd-party\SDL2-2.0.7\include;..\..\..\3rd-party\SDL2_net-2.0.1;..\..\..\3rd-party\wren-0.1.0\src\include;..\..\..\3rd-party\sdl-gpu\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
      <AdditionalDependencies>opengl32.lib;ws2_32.lib;version.lib;Imm32.lib;Winmm.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
 | 
					 | 
				
			||||||
      <AdditionalLibraryDirectories>..\..\..\lib\windows</AdditionalLibraryDirectories>
 | 
					 | 
				
			||||||
      <OutputFile>$(OutDir)tic80$(TargetExt)</OutputFile>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionTargets">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,55 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <Filter Include="src">
 | 
					 | 
				
			||||||
      <UniqueIdentifier>{436dab0f-c17d-462f-b047-65aa6d78eb2b}</UniqueIdentifier>
 | 
					 | 
				
			||||||
    </Filter>
 | 
					 | 
				
			||||||
    <Filter Include="src\ext">
 | 
					 | 
				
			||||||
      <UniqueIdentifier>{fecb4f20-6be7-4359-883b-2077e848b9bd}</UniqueIdentifier>
 | 
					 | 
				
			||||||
    </Filter>
 | 
					 | 
				
			||||||
    <Filter Include="res">
 | 
					 | 
				
			||||||
      <UniqueIdentifier>{46d82260-aea1-4432-943d-1e08f7b18dff}</UniqueIdentifier>
 | 
					 | 
				
			||||||
    </Filter>
 | 
					 | 
				
			||||||
    <Filter Include="src\ext\net">
 | 
					 | 
				
			||||||
      <UniqueIdentifier>{ed36332d-c4fd-4679-9bd4-b78db66e3e9c}</UniqueIdentifier>
 | 
					 | 
				
			||||||
    </Filter>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\SDL2_net-2.0.1\SDLnet.c">
 | 
					 | 
				
			||||||
      <Filter>src\ext\net</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\SDL2_net-2.0.1\SDLnetselect.c">
 | 
					 | 
				
			||||||
      <Filter>src\ext\net</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\SDL2_net-2.0.1\SDLnetTCP.c">
 | 
					 | 
				
			||||||
      <Filter>src\ext\net</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\net.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\ext\file_dialog.c">
 | 
					 | 
				
			||||||
      <Filter>src\ext</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\system.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\tools.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <Image Include="icon.ico">
 | 
					 | 
				
			||||||
      <Filter>res</Filter>
 | 
					 | 
				
			||||||
    </Image>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClInclude Include="resource.h">
 | 
					 | 
				
			||||||
      <Filter>res</Filter>
 | 
					 | 
				
			||||||
    </ClInclude>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ResourceCompile Include="tic.rc">
 | 
					 | 
				
			||||||
      <Filter>res</Filter>
 | 
					 | 
				
			||||||
    </ResourceCompile>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,35 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'">
 | 
					 | 
				
			||||||
    <LocalDebuggerCommand>$(OutDir)tic80$(TargetExt)</LocalDebuggerCommand>
 | 
					 | 
				
			||||||
    <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'">
 | 
					 | 
				
			||||||
    <LocalDebuggerCommand>$(OutDir)tic80$(TargetExt)</LocalDebuggerCommand>
 | 
					 | 
				
			||||||
    <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <LocalDebuggerCommand>$(OutDir)tic80$(TargetExt)</LocalDebuggerCommand>
 | 
					 | 
				
			||||||
    <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <LocalDebuggerCommand>$(OutDir)tic80$(TargetExt)</LocalDebuggerCommand>
 | 
					 | 
				
			||||||
    <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'">
 | 
					 | 
				
			||||||
    <LocalDebuggerCommand>$(OutDir)tic80$(TargetExt)</LocalDebuggerCommand>
 | 
					 | 
				
			||||||
    <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'">
 | 
					 | 
				
			||||||
    <LocalDebuggerCommand>$(OutDir)tic80$(TargetExt)</LocalDebuggerCommand>
 | 
					 | 
				
			||||||
    <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <LocalDebuggerCommand>$(OutDir)tic80$(TargetExt)</LocalDebuggerCommand>
 | 
					 | 
				
			||||||
    <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <LocalDebuggerCommand>$(OutDir)tic80$(TargetExt)</LocalDebuggerCommand>
 | 
					 | 
				
			||||||
    <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							@@ -1,311 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup Label="ProjectConfigurations">
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug Pro|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Debug Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug Pro|x64">
 | 
					 | 
				
			||||||
      <Configuration>Debug Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release Pro|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Release Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release Pro|x64">
 | 
					 | 
				
			||||||
      <Configuration>Release Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|x64">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|x64">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\blip-buf\blip_buf.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\duktape-2.2.0\src\duktape.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\ext\gif.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\jsapi.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\luaapi.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\tic.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\tic80.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\tools.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\wrenapi.c" />
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ProjectReference Include="..\gif\gif.vcxproj">
 | 
					 | 
				
			||||||
      <Project>{6ea9d998-7557-4aed-abfc-142f9960c9b6}</Project>
 | 
					 | 
				
			||||||
    </ProjectReference>
 | 
					 | 
				
			||||||
    <ProjectReference Include="..\lua\lua.vcxproj">
 | 
					 | 
				
			||||||
      <Project>{57d2471b-3138-495e-af18-6e290d098ffc}</Project>
 | 
					 | 
				
			||||||
    </ProjectReference>
 | 
					 | 
				
			||||||
    <ProjectReference Include="..\wren\wren_lib.vcxproj">
 | 
					 | 
				
			||||||
      <Project>{d7cc5189-c399-ac94-ecb2-9a3cd8dee122}</Project>
 | 
					 | 
				
			||||||
    </ProjectReference>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="Globals">
 | 
					 | 
				
			||||||
    <ProjectGuid>{C4D8BC10-EBF6-42BB-9B5D-6712FB428A50}</ProjectGuid>
 | 
					 | 
				
			||||||
    <Keyword>Win32Proj</Keyword>
 | 
					 | 
				
			||||||
    <RootNamespace>tic80</RootNamespace>
 | 
					 | 
				
			||||||
    <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionSettings">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="Shared">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="UserMacros" />
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <LinkIncremental>true</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'">
 | 
					 | 
				
			||||||
    <LinkIncremental>true</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <LinkIncremental>true</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'">
 | 
					 | 
				
			||||||
    <LinkIncremental>true</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <LinkIncremental>false</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'">
 | 
					 | 
				
			||||||
    <LinkIncremental>false</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <LinkIncremental>false</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'">
 | 
					 | 
				
			||||||
    <LinkIncremental>false</LinkIncremental>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;TIC80_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\duktape-2.2.0\src;..\..\..\3rd-party\blip-buf;..\..\..\3rd-party\moonscript;..\..\..\3rd-party\wren-0.1.0\src\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>TIC80_PRO;WIN32;_DEBUG;_WINDOWS;_USRDLL;TIC80_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\duktape-2.2.0\src;..\..\..\3rd-party\blip-buf;..\..\..\3rd-party\moonscript;..\..\..\3rd-party\wren-0.1.0\src\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_DEBUG;_WINDOWS;_USRDLL;TIC80_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\duktape-2.2.0\src;..\..\..\3rd-party\blip-buf;..\..\..\3rd-party\moonscript;..\..\..\3rd-party\wren-0.1.0\src\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>TIC80_PRO;_DEBUG;_WINDOWS;_USRDLL;TIC80_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\duktape-2.2.0\src;..\..\..\3rd-party\blip-buf;..\..\..\3rd-party\moonscript;..\..\..\3rd-party\wren-0.1.0\src\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;TIC80_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\duktape-2.2.0\src;..\..\..\3rd-party\blip-buf;..\..\..\3rd-party\moonscript;..\..\..\3rd-party\wren-0.1.0\src\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>TIC80_PRO;WIN32;NDEBUG;_WINDOWS;_USRDLL;TIC80_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\duktape-2.2.0\src;..\..\..\3rd-party\blip-buf;..\..\..\3rd-party\moonscript;..\..\..\3rd-party\wren-0.1.0\src\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>NDEBUG;_WINDOWS;_USRDLL;TIC80_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\duktape-2.2.0\src;..\..\..\3rd-party\blip-buf;..\..\..\3rd-party\moonscript;..\..\..\3rd-party\wren-0.1.0\src\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>TIC80_PRO;NDEBUG;_WINDOWS;_USRDLL;TIC80_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\include;..\..\..\3rd-party\lua-5.3.1\src;..\..\..\3rd-party\giflib-5.1.4\lib;..\..\..\3rd-party\duktape-2.2.0\src;..\..\..\3rd-party\blip-buf;..\..\..\3rd-party\moonscript;..\..\..\3rd-party\wren-0.1.0\src\include</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionTargets">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,43 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <Filter Include="src">
 | 
					 | 
				
			||||||
      <UniqueIdentifier>{0fae60ee-e4da-4394-b6f1-dafed679fe4d}</UniqueIdentifier>
 | 
					 | 
				
			||||||
    </Filter>
 | 
					 | 
				
			||||||
    <Filter Include="src\ext">
 | 
					 | 
				
			||||||
      <UniqueIdentifier>{40647055-2f61-4d14-8f63-1ec2a6f7cd90}</UniqueIdentifier>
 | 
					 | 
				
			||||||
    </Filter>
 | 
					 | 
				
			||||||
    <Filter Include="src\ext\duktape">
 | 
					 | 
				
			||||||
      <UniqueIdentifier>{32b7b251-991e-49bf-b9b3-146483deba38}</UniqueIdentifier>
 | 
					 | 
				
			||||||
    </Filter>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\tic80.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\jsapi.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\luaapi.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\tic.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\ext\gif.c">
 | 
					 | 
				
			||||||
      <Filter>src\ext</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\tools.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\duktape-2.2.0\src\duktape.c">
 | 
					 | 
				
			||||||
      <Filter>src\ext\duktape</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\blip-buf\blip_buf.c">
 | 
					 | 
				
			||||||
      <Filter>src\ext</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\src\wrenapi.c">
 | 
					 | 
				
			||||||
      <Filter>src</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,4 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <PropertyGroup />
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,194 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup Label="ProjectConfigurations">
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|x64">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|x64">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="Globals">
 | 
					 | 
				
			||||||
    <ProjectGuid>{D7CC5189-C399-AC94-ECB2-9A3CD8DEE122}</ProjectGuid>
 | 
					 | 
				
			||||||
    <IgnoreWarnCompileDuplicatedFilename>true</IgnoreWarnCompileDuplicatedFilename>
 | 
					 | 
				
			||||||
    <Keyword>Win32Proj</Keyword>
 | 
					 | 
				
			||||||
    <RootNamespace>wren_lib</RootNamespace>
 | 
					 | 
				
			||||||
    <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionSettings">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="UserMacros" />
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <OutDir>$(SolutionDir)$(Configuration)\</OutDir>
 | 
					 | 
				
			||||||
    <IntDir>$(Configuration)\</IntDir>
 | 
					 | 
				
			||||||
    <TargetName>$(ProjectName)</TargetName>
 | 
					 | 
				
			||||||
    <TargetExt>.lib</TargetExt>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
 | 
					 | 
				
			||||||
    <IntDir>$(Platform)\$(Configuration)\</IntDir>
 | 
					 | 
				
			||||||
    <TargetName>$(ProjectName)</TargetName>
 | 
					 | 
				
			||||||
    <TargetExt>.lib</TargetExt>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <OutDir>$(SolutionDir)$(Configuration)\</OutDir>
 | 
					 | 
				
			||||||
    <IntDir>$(Configuration)\</IntDir>
 | 
					 | 
				
			||||||
    <TargetName>$(ProjectName)</TargetName>
 | 
					 | 
				
			||||||
    <TargetExt>.lib</TargetExt>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
 | 
					 | 
				
			||||||
    <IntDir>$(Platform)\$(Configuration)\</IntDir>
 | 
					 | 
				
			||||||
    <TargetName>$(ProjectName)</TargetName>
 | 
					 | 
				
			||||||
    <TargetExt>.lib</TargetExt>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\3rd-party\wren-0.1.0\src\include;..\..\..\3rd-party\wren-0.1.0\src\vm;..\..\..\3rd-party\wren-0.1.0\src\optional;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <CompileAs>CompileAsC</CompileAs>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\3rd-party\wren-0.1.0\src\include;..\..\..\3rd-party\wren-0.1.0\src\vm;..\..\..\3rd-party\wren-0.1.0\src\optional;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <CompileAs>CompileAsC</CompileAs>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <GenerateDebugInformation>true</GenerateDebugInformation>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>NDEBUG;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\3rd-party\wren-0.1.0\src\include;..\..\..\3rd-party\wren-0.1.0\src\vm;..\..\..\3rd-party\wren-0.1.0\src\optional;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <Optimization>Full</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <MinimalRebuild>false</MinimalRebuild>
 | 
					 | 
				
			||||||
      <StringPooling>true</StringPooling>
 | 
					 | 
				
			||||||
      <CompileAs>CompileAsC</CompileAs>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>NotUsing</PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>NDEBUG;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <AdditionalIncludeDirectories>..\..\..\3rd-party\wren-0.1.0\src\include;..\..\..\3rd-party\wren-0.1.0\src\vm;..\..\..\3rd-party\wren-0.1.0\src\optional;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
 | 
					 | 
				
			||||||
      <Optimization>Full</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <MinimalRebuild>false</MinimalRebuild>
 | 
					 | 
				
			||||||
      <StringPooling>true</StringPooling>
 | 
					 | 
				
			||||||
      <CompileAs>CompileAsC</CompileAs>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\optional\wren_opt_meta.h" />
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\optional\wren_opt_random.h" />
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_common.h" />
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_compiler.h" />
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_core.h" />
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_debug.h" />
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_opcodes.h" />
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_primitive.h" />
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_utils.h" />
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_value.h" />
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_vm.h" />
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\wren-0.1.0\src\optional\wren_opt_meta.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\wren-0.1.0\src\optional\wren_opt_random.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_compiler.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_core.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_debug.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_primitive.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_utils.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_value.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_vm.c" />
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionTargets">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,75 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <Filter Include="optional">
 | 
					 | 
				
			||||||
      <UniqueIdentifier>{CB60FAAF-B72D-55BB-E046-4363CC728A49}</UniqueIdentifier>
 | 
					 | 
				
			||||||
    </Filter>
 | 
					 | 
				
			||||||
    <Filter Include="vm">
 | 
					 | 
				
			||||||
      <UniqueIdentifier>{E8795900-D405-880B-3DB4-880B295F880B}</UniqueIdentifier>
 | 
					 | 
				
			||||||
    </Filter>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\optional\wren_opt_meta.h">
 | 
					 | 
				
			||||||
      <Filter>optional</Filter>
 | 
					 | 
				
			||||||
    </ClInclude>
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\optional\wren_opt_random.h">
 | 
					 | 
				
			||||||
      <Filter>optional</Filter>
 | 
					 | 
				
			||||||
    </ClInclude>
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_common.h">
 | 
					 | 
				
			||||||
      <Filter>vm</Filter>
 | 
					 | 
				
			||||||
    </ClInclude>
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_compiler.h">
 | 
					 | 
				
			||||||
      <Filter>vm</Filter>
 | 
					 | 
				
			||||||
    </ClInclude>
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_core.h">
 | 
					 | 
				
			||||||
      <Filter>vm</Filter>
 | 
					 | 
				
			||||||
    </ClInclude>
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_debug.h">
 | 
					 | 
				
			||||||
      <Filter>vm</Filter>
 | 
					 | 
				
			||||||
    </ClInclude>
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_opcodes.h">
 | 
					 | 
				
			||||||
      <Filter>vm</Filter>
 | 
					 | 
				
			||||||
    </ClInclude>
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_primitive.h">
 | 
					 | 
				
			||||||
      <Filter>vm</Filter>
 | 
					 | 
				
			||||||
    </ClInclude>
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_utils.h">
 | 
					 | 
				
			||||||
      <Filter>vm</Filter>
 | 
					 | 
				
			||||||
    </ClInclude>
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_value.h">
 | 
					 | 
				
			||||||
      <Filter>vm</Filter>
 | 
					 | 
				
			||||||
    </ClInclude>
 | 
					 | 
				
			||||||
    <ClInclude Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_vm.h">
 | 
					 | 
				
			||||||
      <Filter>vm</Filter>
 | 
					 | 
				
			||||||
    </ClInclude>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\wren-0.1.0\src\optional\wren_opt_meta.c">
 | 
					 | 
				
			||||||
      <Filter>optional</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\wren-0.1.0\src\optional\wren_opt_random.c">
 | 
					 | 
				
			||||||
      <Filter>optional</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_compiler.c">
 | 
					 | 
				
			||||||
      <Filter>vm</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_core.c">
 | 
					 | 
				
			||||||
      <Filter>vm</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_debug.c">
 | 
					 | 
				
			||||||
      <Filter>vm</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_primitive.c">
 | 
					 | 
				
			||||||
      <Filter>vm</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_utils.c">
 | 
					 | 
				
			||||||
      <Filter>vm</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_value.c">
 | 
					 | 
				
			||||||
      <Filter>vm</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\wren-0.1.0\src\vm\wren_vm.c">
 | 
					 | 
				
			||||||
      <Filter>vm</Filter>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,4 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <PropertyGroup />
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,267 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup Label="ProjectConfigurations">
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug Pro|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Debug Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug Pro|x64">
 | 
					 | 
				
			||||||
      <Configuration>Debug Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release Pro|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Release Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release Pro|x64">
 | 
					 | 
				
			||||||
      <Configuration>Release Pro</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|Win32">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>Win32</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Debug|x64">
 | 
					 | 
				
			||||||
      <Configuration>Debug</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
    <ProjectConfiguration Include="Release|x64">
 | 
					 | 
				
			||||||
      <Configuration>Release</Configuration>
 | 
					 | 
				
			||||||
      <Platform>x64</Platform>
 | 
					 | 
				
			||||||
    </ProjectConfiguration>
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\adler32.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\compress.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\crc32.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\deflate.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\gzclose.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\gzlib.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\gzread.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\gzwrite.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\infback.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\inffast.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\inflate.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\inftrees.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\trees.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\uncompr.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\zutil.c" />
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="Globals">
 | 
					 | 
				
			||||||
    <ProjectGuid>{1DFBDFA2-F204-42FF-B99E-250E4B2EBA04}</ProjectGuid>
 | 
					 | 
				
			||||||
    <Keyword>Win32Proj</Keyword>
 | 
					 | 
				
			||||||
    <RootNamespace>zlib</RootNamespace>
 | 
					 | 
				
			||||||
    <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>true</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'" Label="Configuration">
 | 
					 | 
				
			||||||
    <ConfigurationType>StaticLibrary</ConfigurationType>
 | 
					 | 
				
			||||||
    <UseDebugLibraries>false</UseDebugLibraries>
 | 
					 | 
				
			||||||
    <PlatformToolset>v140_xp</PlatformToolset>
 | 
					 | 
				
			||||||
    <WholeProgramOptimization>true</WholeProgramOptimization>
 | 
					 | 
				
			||||||
    <CharacterSet>MultiByte</CharacterSet>
 | 
					 | 
				
			||||||
  </PropertyGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionSettings">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="Shared">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'" Label="PropertySheets">
 | 
					 | 
				
			||||||
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
  <PropertyGroup Label="UserMacros" />
 | 
					 | 
				
			||||||
  <PropertyGroup />
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Pro|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <Optimization>Disabled</Optimization>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|Win32'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Pro|x64'">
 | 
					 | 
				
			||||||
    <ClCompile>
 | 
					 | 
				
			||||||
      <WarningLevel>Level3</WarningLevel>
 | 
					 | 
				
			||||||
      <PrecompiledHeader>
 | 
					 | 
				
			||||||
      </PrecompiledHeader>
 | 
					 | 
				
			||||||
      <Optimization>MaxSpeed</Optimization>
 | 
					 | 
				
			||||||
      <FunctionLevelLinking>true</FunctionLevelLinking>
 | 
					 | 
				
			||||||
      <IntrinsicFunctions>true</IntrinsicFunctions>
 | 
					 | 
				
			||||||
      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions>
 | 
					 | 
				
			||||||
      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
 | 
					 | 
				
			||||||
    </ClCompile>
 | 
					 | 
				
			||||||
    <Link>
 | 
					 | 
				
			||||||
      <SubSystem>Windows</SubSystem>
 | 
					 | 
				
			||||||
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
 | 
					 | 
				
			||||||
      <OptimizeReferences>true</OptimizeReferences>
 | 
					 | 
				
			||||||
    </Link>
 | 
					 | 
				
			||||||
  </ItemDefinitionGroup>
 | 
					 | 
				
			||||||
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
 | 
					 | 
				
			||||||
  <ImportGroup Label="ExtensionTargets">
 | 
					 | 
				
			||||||
  </ImportGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,20 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <ItemGroup>
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\zutil.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\adler32.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\compress.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\crc32.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\deflate.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\gzclose.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\gzlib.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\gzread.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\gzwrite.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\infback.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\inffast.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\inflate.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\inftrees.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\trees.c" />
 | 
					 | 
				
			||||||
    <ClCompile Include="..\..\..\3rd-party\zlib-1.2.8\uncompr.c" />
 | 
					 | 
				
			||||||
  </ItemGroup>
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
@@ -1,4 +0,0 @@
 | 
				
			|||||||
<?xml version="1.0" encoding="utf-8"?>
 | 
					 | 
				
			||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
					 | 
				
			||||||
  <PropertyGroup />
 | 
					 | 
				
			||||||
</Project>
 | 
					 | 
				
			||||||
		Reference in New Issue
	
	Block a user