First Addition of the Win32 binary (using Visual Studio 2022)

This commit is contained in:
Olivier Goguel 2022-08-31 22:29:43 +02:00
parent 5b8e1f795f
commit 9283b0436c
105 changed files with 13456 additions and 7 deletions

4
.gitignore vendored
View File

@ -2,3 +2,7 @@
xcuserdata/
ActiveGS_AsmJS/out
contents.xcworkspacedata
.vs/
~Build/
*.vcxproj.user

31
ActiveGS.exe/ActiveGS.sln Normal file
View File

@ -0,0 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.3.32819.101
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ActiveGS", "ActiveGS91.exe.vcxproj", "{49D558B6-A2BC-4F7F-9F20-8C722193DD76}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{49D558B6-A2BC-4F7F-9F20-8C722193DD76}.Debug|x64.ActiveCfg = Debug|x64
{49D558B6-A2BC-4F7F-9F20-8C722193DD76}.Debug|x64.Build.0 = Debug|x64
{49D558B6-A2BC-4F7F-9F20-8C722193DD76}.Debug|x86.ActiveCfg = Debug|Win32
{49D558B6-A2BC-4F7F-9F20-8C722193DD76}.Debug|x86.Build.0 = Debug|Win32
{49D558B6-A2BC-4F7F-9F20-8C722193DD76}.Release|x64.ActiveCfg = Release|x64
{49D558B6-A2BC-4F7F-9F20-8C722193DD76}.Release|x64.Build.0 = Release|x64
{49D558B6-A2BC-4F7F-9F20-8C722193DD76}.Release|x86.ActiveCfg = Release|Win32
{49D558B6-A2BC-4F7F-9F20-8C722193DD76}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {B0B0FDD8-92C9-4AF4-A72D-4DAFD4AAF4BF}
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,412 @@
<?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">
<ProjectName>ActiveGS</ProjectName>
<ProjectGuid>{49D558B6-A2BC-4F7F-9F20-8C722193DD76}</ProjectGuid>
<RootNamespace>ActiveGS91exe</RootNamespace>
<Keyword>Win32Proj</Keyword>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v143</PlatformToolset>
<UseOfMfc>Static</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v143</PlatformToolset>
<UseOfMfc>Static</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v143</PlatformToolset>
<UseOfMfc>Static</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v143</PlatformToolset>
<UseOfMfc>Static</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|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>
<_ProjectFileVersion>16.0.30427.251</_ProjectFileVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<OutDir>$(SolutionDir)~Build\$(ProjectName)\$(Configuration)\$(PlatformShortName)</OutDir>
<IntDir>$(SolutionDir)~Build\Objs\$(ProjectName)\$(Configuration)\$(PlatformShortName)</IntDir>
<LinkIncremental>true</LinkIncremental>
<TargetName>A$(TargetExt)</TargetName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LinkIncremental>true</LinkIncremental>
<OutDir>$(SolutionDir)~Build\$(ProjectName)\$(Configuration)\$(PlatformShortName)</OutDir>
<IntDir>$(SolutionDir)~Build\Objs\$(ProjectName)\$(Configuration)\$(PlatformShortName)</IntDir>
<TargetName>$(ProjectName)</TargetName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<OutDir>$(SolutionDir)~Build\$(ProjectName)\$(Configuration)\$(PlatformShortName)</OutDir>
<IntDir>$(SolutionDir)~Build\Objs\$(ProjectName)\$(Configuration)\$(PlatformShortName)</IntDir>
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LinkIncremental>false</LinkIncremental>
<OutDir>$(SolutionDir)~Build\$(ProjectName)\$(Configuration)\$(PlatformShortName)</OutDir>
<IntDir>$(SolutionDir)~Build\Objs\$(ProjectName)\$(Configuration)\$(PlatformShortName)</IntDir>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;KEGS_LITTLE_ENDIAN;ACTIVEGS;KEGS91;KEGS_BETAVERSION;DRIVER_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<MinimalRebuild>true</MinimalRebuild>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
<PrecompiledHeader />
<WarningLevel>Level3</WarningLevel>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<DisableSpecificWarnings>4996;%(DisableSpecificWarnings)</DisableSpecificWarnings>
</ClCompile>
<Link>
<AdditionalDependencies>winmm.lib;comctl32.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies)</AdditionalDependencies>
<IgnoreSpecificDefaultLibraries>msvcrtd.lib nafxcwd.lib libcmtd.lib;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SubSystem>Windows</SubSystem>
<TargetMachine>MachineX86</TargetMachine>
<OutputFile>$(OutDir)$(TargetName)</OutputFile>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;KEGS_LITTLE_ENDIAN;ACTIVEGS;KEGS91;KEGS_BETAVERSION;DRIVER_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<DisableSpecificWarnings>4996;%(DisableSpecificWarnings)</DisableSpecificWarnings>
</ClCompile>
<Link>
<AdditionalDependencies>winmm.lib;comctl32.lib;nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies)</AdditionalDependencies>
<IgnoreSpecificDefaultLibraries>msvcrtd.lib nafxcwd.lib libcmtd.lib;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SubSystem>Windows</SubSystem>
<OutputFile>$(OutDir)$(ProjectName).exe</OutputFile>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<Optimization>MaxSpeed</Optimization>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;KEGS_LITTLE_ENDIAN;ACTIVEGS;KEGS91;KEGS_BETAVERSION;DRIVER_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader />
<PrecompiledHeaderFile>../Common.win32/StdAfx.h</PrecompiledHeaderFile>
<WarningLevel>Level3</WarningLevel>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<DisableSpecificWarnings>4996;%(DisableSpecificWarnings)</DisableSpecificWarnings>
</ClCompile>
<Link>
<AdditionalDependencies>winmm.lib;comctl32.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies)</AdditionalDependencies>
<OutputFile>$(SolutionDir)run\ActiveGS.exe</OutputFile>
<IgnoreSpecificDefaultLibraries>msvcrt.lib nafxcw.lib libcmt.lib;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SubSystem>Windows</SubSystem>
<OptimizeReferences>true</OptimizeReferences>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<TargetMachine>MachineX86</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<Optimization>MaxSpeed</Optimization>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;KEGS_LITTLE_ENDIAN;ACTIVEGS;KEGS91;KEGS_BETAVERSION;DRIVER_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderFile>../Common.win32/StdAfx.h</PrecompiledHeaderFile>
<WarningLevel>Level3</WarningLevel>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<DisableSpecificWarnings>4996;%(DisableSpecificWarnings)</DisableSpecificWarnings>
</ClCompile>
<Link>
<AdditionalDependencies>winmm.lib;comctl32.lib;nafxcw.lib;libcmt.lib;%(AdditionalDependencies)</AdditionalDependencies>
<OutputFile>$(OutDir)$(ProjectName).exe</OutputFile>
<IgnoreSpecificDefaultLibraries>msvcrt.lib nafxcw.lib libcmt.lib;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SubSystem>Windows</SubSystem>
<OptimizeReferences>true</OptimizeReferences>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\Common.win32\ActiveCommon.cpp" />
<ClCompile Include="..\Common.win32\ActiveDownloadWin32.cpp" />
<ClCompile Include="..\Common.win32\ActiveInfo.cpp" />
<ClCompile Include="..\Common.win32\ActiveStatus.cpp" />
<ClCompile Include="..\Common.win32\ChildView.cpp" />
<ClCompile Include="..\Common.win32\DiskEditURL.cpp" />
<ClCompile Include="..\Common.win32\HyperLink.cpp" />
<ClCompile Include="..\Common.win32\SliderZip.cpp" />
<ClCompile Include="..\Common.win32\stdafx.cpp">
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="..\Common.win32\TabGeneral.cpp" />
<ClCompile Include="..\Common.win32\TabOption.cpp" />
<ClCompile Include="..\Common.win32\TabRuntime.cpp" />
<ClCompile Include="..\Common.win32\TabXml.cpp" />
<ClCompile Include="..\Common.win32\winconsole.cpp" />
<ClCompile Include="..\Common\3rdpartylib\simplexml.cpp" />
<ClCompile Include="..\Common\activeconfig.cpp" />
<ClCompile Include="..\Common\ActiveDownload.cpp" />
<ClCompile Include="..\Common\ActiveGSList.cpp" />
<ClCompile Include="..\Common\ActiveZip.cpp" />
<ClCompile Include="..\Common\apple2e.cpp" />
<ClCompile Include="..\Common\CA2Text.cpp" />
<ClCompile Include="..\Common\CEmulatorCtrl.cpp" />
<ClCompile Include="..\Common\interface.cpp" />
<ClCompile Include="..\Common\libpng.cpp" />
<ClCompile Include="..\Common\rom.cpp" />
<ClCompile Include="..\Drivers\activegs_driver.cpp" />
<ClCompile Include="..\Libraries\libpng\png.cpp" />
<ClCompile Include="..\Libraries\libpng\pngerror.cpp" />
<ClCompile Include="..\Libraries\libpng\pnggccrd.cpp" />
<ClCompile Include="..\Libraries\libpng\pngget.cpp" />
<ClCompile Include="..\Libraries\libpng\pngmem.cpp" />
<ClCompile Include="..\Libraries\libpng\pngpread.cpp" />
<ClCompile Include="..\Libraries\libpng\pngread.cpp" />
<ClCompile Include="..\Libraries\libpng\pngrio.cpp" />
<ClCompile Include="..\Libraries\libpng\pngrtran.cpp" />
<ClCompile Include="..\Libraries\libpng\pngrutil.cpp" />
<ClCompile Include="..\Libraries\libpng\pngset.cpp" />
<ClCompile Include="..\Libraries\libpng\pngtrans.cpp" />
<ClCompile Include="..\Libraries\libpng\pngvcrd.cpp" />
<ClCompile Include="..\Libraries\libpng\pngwio.cpp" />
<ClCompile Include="..\Libraries\libpng\pngwrite.cpp" />
<ClCompile Include="..\Libraries\libpng\pngwtran.cpp" />
<ClCompile Include="..\Libraries\libpng\pngwutil.cpp" />
<ClCompile Include="..\kegs\Src\adb.cpp" />
<ClCompile Include="..\kegs\Src\async_event.cpp" />
<ClCompile Include="..\kegs\Src\bigfile.cpp" />
<ClCompile Include="..\kegs\Src\clock.cpp" />
<ClCompile Include="..\kegs\Src\compile_time.cpp" />
<ClCompile Include="..\kegs\Src\compression.cpp" />
<ClCompile Include="..\kegs\Src\config_generic.cpp" />
<ClCompile Include="..\kegs\Src\dis.cpp" />
<ClCompile Include="..\kegs\Src\driver.cpp" />
<ClCompile Include="..\kegs\Src\engine_c.cpp" />
<ClCompile Include="..\kegs\Src\GraphCounter.cpp" />
<ClCompile Include="..\kegs\Src\iwm.cpp" />
<ClCompile Include="..\kegs\Src\marinetti.cpp" />
<ClCompile Include="..\kegs\Src\marinetti_helper.cpp" />
<ClCompile Include="..\kegs\Src\moremem.cpp" />
<ClCompile Include="..\kegs\Src\paddles.cpp" />
<ClCompile Include="..\kegs\Src\SaveState.cpp" />
<ClCompile Include="..\kegs\Src\scc.cpp" />
<ClCompile Include="..\kegs\Src\scc_socket_driver.cpp" />
<ClCompile Include="..\kegs\Src\sim65816.cpp" />
<ClCompile Include="..\kegs\Src\smartport.cpp" />
<ClCompile Include="..\kegs\Src\sound.cpp" />
<ClCompile Include="..\kegs\Src\sound_driver.cpp" />
<ClCompile Include="..\kegs\Src\video.cpp" />
<ClCompile Include="..\Libraries\unzip101e\ioapi.cpp" />
<ClCompile Include="..\Libraries\unzip101e\iowin32.cpp" />
<ClCompile Include="..\Libraries\unzip101e\unzip.cpp" />
<ClCompile Include="..\Libraries\unzip101e\zip.cpp" />
<ClCompile Include="..\kegs\Win\joystick_win.cpp" />
<ClCompile Include="..\kegs\Win\scc_windriver.cpp" />
<ClCompile Include="..\kegs\Win\win32snd_driver.cpp" />
<ClCompile Include="..\kegs\Win\win_activegs.cpp" />
<ClCompile Include="..\kegs\Win\win_generic.cpp" />
<ClCompile Include="..\kegs\Win\win_raster.cpp" />
<ClCompile Include="..\Libraries\zlib123\adler32.cpp" />
<ClCompile Include="..\Libraries\zlib123\compress.cpp" />
<ClCompile Include="..\Libraries\zlib123\crc32.cpp" />
<ClCompile Include="..\Libraries\zlib123\deflate.cpp" />
<ClCompile Include="..\Libraries\zlib123\inffast.cpp" />
<ClCompile Include="..\Libraries\zlib123\inflate.cpp" />
<ClCompile Include="..\Libraries\zlib123\inftrees.cpp" />
<ClCompile Include="..\Libraries\zlib123\trees.cpp" />
<ClCompile Include="..\Libraries\zlib123\uncompr.cpp" />
<ClCompile Include="..\Libraries\zlib123\zutil.cpp" />
<ClCompile Include="ActiveGSApp.cpp" />
<ClCompile Include="cgfiltyp.cpp" />
<ClCompile Include="MainFrm.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\Common.win32\activecommon.h" />
<ClInclude Include="..\Common.win32\activecommonres.h" />
<ClInclude Include="..\Common.win32\ActiveInfo.h" />
<ClInclude Include="..\Common.win32\ActiveStatus.h" />
<ClInclude Include="..\Common.win32\ChildView.h" />
<ClInclude Include="..\Common.win32\consoleresrc.h" />
<ClInclude Include="..\Common.win32\DiskEditURL.h" />
<ClInclude Include="..\Common.win32\HyperLink.h" />
<ClInclude Include="..\Common.win32\SliderZip.h" />
<ClInclude Include="..\Common.win32\TabGeneral.h" />
<ClInclude Include="..\Common.win32\TabOption.h" />
<ClInclude Include="..\Common.win32\TabRuntime.h" />
<ClInclude Include="..\Common.win32\TabXml.h" />
<ClInclude Include="..\Common\3rdpartylib\simplexml.h" />
<ClInclude Include="..\Common\ActiveDownload.h" />
<ClInclude Include="..\Common\ActiveGSList.h" />
<ClInclude Include="..\Common\CEMulatorCtrl.h" />
<ClInclude Include="..\Libraries\libpng\png.h" />
<ClInclude Include="..\Libraries\libpng\pngconf.h" />
<ClInclude Include="..\kegs\Src\16inst_c.h" />
<ClInclude Include="..\kegs\Src\8inst_c.h" />
<ClInclude Include="..\kegs\Src\8inst_s.h" />
<ClInclude Include="..\kegs\Src\adb.h" />
<ClInclude Include="..\kegs\Src\async_event.h" />
<ClInclude Include="..\kegs\Src\bigfile.h" />
<ClInclude Include="..\kegs\Src\clock.h" />
<ClInclude Include="..\kegs\Src\compression.h" />
<ClInclude Include="..\kegs\Src\config.h" />
<ClInclude Include="..\kegs\Src\defc.h" />
<ClInclude Include="..\kegs\Src\defcomm.h" />
<ClInclude Include="..\kegs\Src\defs.h" />
<ClInclude Include="..\kegs\Src\defs_instr.h" />
<ClInclude Include="..\kegs\Src\disas.h" />
<ClInclude Include="..\kegs\Src\driver.h" />
<ClInclude Include="..\kegs\Src\graphcounter.h" />
<ClInclude Include="..\kegs\Src\iwm.h" />
<ClInclude Include="..\kegs\Src\iwm_35_525.h" />
<ClInclude Include="..\kegs\Src\kegsfont.h" />
<ClInclude Include="..\kegs\Src\kegsversion.h" />
<ClInclude Include="..\kegs\Src\marinetti.h" />
<ClInclude Include="..\kegs\Src\moremem.h" />
<ClInclude Include="..\kegs\Src\op_routs.h" />
<ClInclude Include="..\kegs\Src\paddles.h" />
<ClInclude Include="..\kegs\Src\prodos.h" />
<ClInclude Include="..\kegs\Src\prodos_protos.h" />
<ClInclude Include="..\kegs\Src\protos.h" />
<ClInclude Include="..\kegs\Src\protos_engine_c.h" />
<ClInclude Include="..\kegs\Src\protos_macdriver.h" />
<ClInclude Include="..\kegs\Src\protos_macsnd_driver.h" />
<ClInclude Include="..\kegs\Src\protos_windriver.h" />
<ClInclude Include="..\kegs\Src\protos_xdriver.h" />
<ClInclude Include="..\kegs\Src\raster.h" />
<ClInclude Include="..\kegs\Src\SaveState.h" />
<ClInclude Include="..\kegs\Src\scc.h" />
<ClInclude Include="..\kegs\Src\sim65816.h" />
<ClInclude Include="..\kegs\Src\size_c.h" />
<ClInclude Include="..\kegs\Src\size_tab.h" />
<ClInclude Include="..\kegs\Src\sound.h" />
<ClInclude Include="..\kegs\Src\StdString.h" />
<ClInclude Include="..\kegs\Src\superhires.h" />
<ClInclude Include="..\kegs\Src\video.h" />
<ClInclude Include="..\Libraries\unzip101e\crypt.h" />
<ClInclude Include="..\Libraries\unzip101e\ioapi.h" />
<ClInclude Include="..\Libraries\unzip101e\iowin32.h" />
<ClInclude Include="..\Libraries\unzip101e\unzip.h" />
<ClInclude Include="..\Libraries\unzip101e\zip.h" />
<ClInclude Include="..\kegs\Win\dirent-win32.h" />
<ClInclude Include="..\kegs\Win\winresource.h" />
<ClInclude Include="..\Libraries\zlib123\crc32.h" />
<ClInclude Include="..\Libraries\zlib123\deflate.h" />
<ClInclude Include="..\Libraries\zlib123\inffast.h" />
<ClInclude Include="..\Libraries\zlib123\inffixed.h" />
<ClInclude Include="..\Libraries\zlib123\inflate.h" />
<ClInclude Include="..\Libraries\zlib123\inftrees.h" />
<ClInclude Include="..\Libraries\zlib123\trees.h" />
<ClInclude Include="..\Libraries\zlib123\zconf.h" />
<ClInclude Include="..\Libraries\zlib123\zconf.in.h" />
<ClInclude Include="..\Libraries\zlib123\zlib.h" />
<ClInclude Include="..\Libraries\zlib123\zutil.h" />
<ClInclude Include="ActiveGSApp.h" />
<ClInclude Include="cgfiltyp.h" />
<ClInclude Include="MainFrm.h" />
<ClInclude Include="Resource.h" />
<ClInclude Include="resource1.h" />
<ClInclude Include="stdafx.h" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="..\Common.win32\ActiveCommon.rc" />
<ResourceCompile Include="..\Common.win32\ActiveGS.rc" />
<ResourceCompile Include="..\Common.win32\console.rc" />
<ResourceCompile Include="ActiveGSApp.rc" />
</ItemGroup>
<ItemGroup>
<Xml Include="..\run\activegsappconfig.xml" />
</ItemGroup>
<ItemGroup>
<Image Include="..\Common.win32\bitmap2.bmp" />
<Image Include="..\Common.win32\bmp00001.bmp" />
<Image Include="..\Common.win32\disk52.bmp" />
<Image Include="..\Common.win32\disk54.bmp" />
<Image Include="..\Common.win32\disk55.bmp" />
<Image Include="..\Common32\bitmap2.bmp" />
<Image Include="..\Common32\disk52.bmp" />
<Image Include="..\Common32\disk54.bmp" />
<Image Include="..\Common32\disk55.bmp" />
<Image Include="res\ActiveGSApp.ico" />
<Image Include="res\idr_22mg.ico" />
<Image Include="res\idr_2mg1.ico" />
<Image Include="res\idr_main.ico" />
<Image Include="res\Toolbar.bmp" />
</ItemGroup>
<ItemGroup>
<Manifest Include="res\ActiveGSApp.manifest" />
</ItemGroup>
<ItemGroup>
<None Include="..\Common.win32\cursor1.cur" />
</ItemGroup>
<ItemGroup>
<Media Include="..\Common\sounds\Spin Up Search 1.wav" />
<Media Include="..\Common\sounds\Spin Up Search 2.wav" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
<ProjectExtensions>
<VisualStudio>
<UserProperties RESOURCE_FILE="ActiveGSApp.rc" />
</VisualStudio>
</ProjectExtensions>
</Project>

View File

@ -0,0 +1,615 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="Common">
<UniqueIdentifier>{0876290e-5ea0-4529-80ca-3e33de8b9a40}</UniqueIdentifier>
</Filter>
<Filter Include="common.win32">
<UniqueIdentifier>{6da1666e-cbb0-4abb-a97f-ac0478b844f8}</UniqueIdentifier>
</Filter>
<Filter Include="Src">
<UniqueIdentifier>{b38e7a11-43e1-4c45-9e0a-298f7faa5b34}</UniqueIdentifier>
</Filter>
<Filter Include="Src\H">
<UniqueIdentifier>{12d375d5-3df0-4a7e-9086-c545dbdf625d}</UniqueIdentifier>
</Filter>
<Filter Include="Run">
<UniqueIdentifier>{51dc8c41-b398-47e4-b68a-61417da40967}</UniqueIdentifier>
</Filter>
<Filter Include="activegs.exe">
<UniqueIdentifier>{3dfcff28-c626-4032-b6ff-b8dc129d187a}</UniqueIdentifier>
</Filter>
<Filter Include="activegs.exe\Header Files">
<UniqueIdentifier>{3f6df060-e239-4886-b77c-b474461ce911}</UniqueIdentifier>
</Filter>
<Filter Include="libpng">
<UniqueIdentifier>{411622c0-1a8d-4b39-9fee-49dcbb8dd4c6}</UniqueIdentifier>
</Filter>
<Filter Include="win">
<UniqueIdentifier>{a0ee4f56-59a4-46a1-aa53-a3effdb48cbc}</UniqueIdentifier>
</Filter>
<Filter Include="unzip">
<UniqueIdentifier>{e88f5577-5dd9-4f81-adc3-d2e0001f5661}</UniqueIdentifier>
</Filter>
<Filter Include="zlib">
<UniqueIdentifier>{4b8c0a8d-8a74-40fa-aa3c-be5fb3ec4e7e}</UniqueIdentifier>
</Filter>
<Filter Include="Drivers">
<UniqueIdentifier>{b96f449f-29ea-4305-b074-52155c15c111}</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\Common\activeconfig.cpp">
<Filter>Common</Filter>
</ClCompile>
<ClCompile Include="..\Common\ActiveDownload.cpp">
<Filter>Common</Filter>
</ClCompile>
<ClCompile Include="..\Common\ActiveGSList.cpp">
<Filter>Common</Filter>
</ClCompile>
<ClCompile Include="..\Common\ActiveZip.cpp">
<Filter>Common</Filter>
</ClCompile>
<ClCompile Include="..\Common\apple2e.cpp">
<Filter>Common</Filter>
</ClCompile>
<ClCompile Include="..\Common\CA2Text.cpp">
<Filter>Common</Filter>
</ClCompile>
<ClCompile Include="..\Common\CEmulatorCtrl.cpp">
<Filter>Common</Filter>
</ClCompile>
<ClCompile Include="..\Common\interface.cpp">
<Filter>Common</Filter>
</ClCompile>
<ClCompile Include="..\Common\libpng.cpp">
<Filter>Common</Filter>
</ClCompile>
<ClCompile Include="..\Common\rom.cpp">
<Filter>Common</Filter>
</ClCompile>
<ClCompile Include="..\Common\3rdpartylib\simplexml.cpp">
<Filter>Common</Filter>
</ClCompile>
<ClCompile Include="..\Common.win32\ActiveCommon.cpp">
<Filter>common.win32</Filter>
</ClCompile>
<ClCompile Include="..\Common.win32\ActiveDownloadWin32.cpp">
<Filter>common.win32</Filter>
</ClCompile>
<ClCompile Include="..\Common.win32\ActiveInfo.cpp">
<Filter>common.win32</Filter>
</ClCompile>
<ClCompile Include="..\Common.win32\ActiveStatus.cpp">
<Filter>common.win32</Filter>
</ClCompile>
<ClCompile Include="..\Common.win32\ChildView.cpp">
<Filter>common.win32</Filter>
</ClCompile>
<ClCompile Include="..\Common.win32\DiskEditURL.cpp">
<Filter>common.win32</Filter>
</ClCompile>
<ClCompile Include="..\Common.win32\HyperLink.cpp">
<Filter>common.win32</Filter>
</ClCompile>
<ClCompile Include="..\Common.win32\SliderZip.cpp">
<Filter>common.win32</Filter>
</ClCompile>
<ClCompile Include="..\Common.win32\TabGeneral.cpp">
<Filter>common.win32</Filter>
</ClCompile>
<ClCompile Include="..\Common.win32\TabOption.cpp">
<Filter>common.win32</Filter>
</ClCompile>
<ClCompile Include="..\Common.win32\TabRuntime.cpp">
<Filter>common.win32</Filter>
</ClCompile>
<ClCompile Include="..\Common.win32\TabXml.cpp">
<Filter>common.win32</Filter>
</ClCompile>
<ClCompile Include="..\Common.win32\winconsole.cpp">
<Filter>common.win32</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\adb.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\async_event.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\clock.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\compile_time.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\compression.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\config_generic.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\dis.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\driver.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\engine_c.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\GraphCounter.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\iwm.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\marinetti.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\marinetti_helper.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\moremem.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\paddles.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\SaveState.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\scc.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\scc_socket_driver.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\sim65816.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\smartport.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\sound.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\sound_driver.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\video.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="ActiveGSApp.cpp">
<Filter>activegs.exe</Filter>
</ClCompile>
<ClCompile Include="cgfiltyp.cpp">
<Filter>activegs.exe</Filter>
</ClCompile>
<ClCompile Include="MainFrm.cpp">
<Filter>activegs.exe</Filter>
</ClCompile>
<ClCompile Include="..\Common.win32\stdafx.cpp">
<Filter>activegs.exe</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Win\joystick_win.cpp">
<Filter>win</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Win\scc_windriver.cpp">
<Filter>win</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Win\win32snd_driver.cpp">
<Filter>win</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Win\win_activegs.cpp">
<Filter>win</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Win\win_generic.cpp">
<Filter>win</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Win\win_raster.cpp">
<Filter>win</Filter>
</ClCompile>
<ClCompile Include="..\Drivers\activegs_driver.cpp">
<Filter>Drivers</Filter>
</ClCompile>
<ClCompile Include="..\kegs\Src\bigfile.cpp">
<Filter>Src</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\libpng\pngwutil.cpp">
<Filter>libpng</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\libpng\png.cpp">
<Filter>libpng</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\libpng\pngerror.cpp">
<Filter>libpng</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\libpng\pnggccrd.cpp">
<Filter>libpng</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\libpng\pngget.cpp">
<Filter>libpng</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\libpng\pngmem.cpp">
<Filter>libpng</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\libpng\pngpread.cpp">
<Filter>libpng</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\libpng\pngread.cpp">
<Filter>libpng</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\libpng\pngrio.cpp">
<Filter>libpng</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\libpng\pngrtran.cpp">
<Filter>libpng</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\libpng\pngrutil.cpp">
<Filter>libpng</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\libpng\pngset.cpp">
<Filter>libpng</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\libpng\pngtrans.cpp">
<Filter>libpng</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\libpng\pngvcrd.cpp">
<Filter>libpng</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\libpng\pngwio.cpp">
<Filter>libpng</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\libpng\pngwrite.cpp">
<Filter>libpng</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\libpng\pngwtran.cpp">
<Filter>libpng</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\zlib123\compress.cpp">
<Filter>zlib</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\zlib123\crc32.cpp">
<Filter>zlib</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\zlib123\adler32.cpp">
<Filter>zlib</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\zlib123\deflate.cpp">
<Filter>unzip</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\zlib123\inffast.cpp">
<Filter>zlib</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\zlib123\inflate.cpp">
<Filter>zlib</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\zlib123\inftrees.cpp">
<Filter>zlib</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\unzip101e\ioapi.cpp">
<Filter>unzip</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\unzip101e\iowin32.cpp">
<Filter>unzip</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\zlib123\trees.cpp">
<Filter>zlib</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\zlib123\uncompr.cpp">
<Filter>zlib</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\unzip101e\unzip.cpp">
<Filter>unzip</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\unzip101e\zip.cpp">
<Filter>unzip</Filter>
</ClCompile>
<ClCompile Include="..\Libraries\zlib123\zutil.cpp">
<Filter>zlib</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\Common\ActiveDownload.h">
<Filter>Common</Filter>
</ClInclude>
<ClInclude Include="..\Common\ActiveGSList.h">
<Filter>Common</Filter>
</ClInclude>
<ClInclude Include="..\Common\CEMulatorCtrl.h">
<Filter>Common</Filter>
</ClInclude>
<ClInclude Include="..\Common\3rdpartylib\simplexml.h">
<Filter>Common</Filter>
</ClInclude>
<ClInclude Include="..\Common.win32\activecommon.h">
<Filter>common.win32</Filter>
</ClInclude>
<ClInclude Include="..\Common.win32\activecommonres.h">
<Filter>common.win32</Filter>
</ClInclude>
<ClInclude Include="..\Common.win32\ActiveInfo.h">
<Filter>common.win32</Filter>
</ClInclude>
<ClInclude Include="..\Common.win32\ActiveStatus.h">
<Filter>common.win32</Filter>
</ClInclude>
<ClInclude Include="..\Common.win32\ChildView.h">
<Filter>common.win32</Filter>
</ClInclude>
<ClInclude Include="..\Common.win32\consoleresrc.h">
<Filter>common.win32</Filter>
</ClInclude>
<ClInclude Include="..\Common.win32\DiskEditURL.h">
<Filter>common.win32</Filter>
</ClInclude>
<ClInclude Include="..\Common.win32\HyperLink.h">
<Filter>common.win32</Filter>
</ClInclude>
<ClInclude Include="..\Common.win32\SliderZip.h">
<Filter>common.win32</Filter>
</ClInclude>
<ClInclude Include="..\Common.win32\TabGeneral.h">
<Filter>common.win32</Filter>
</ClInclude>
<ClInclude Include="..\Common.win32\TabOption.h">
<Filter>common.win32</Filter>
</ClInclude>
<ClInclude Include="..\Common.win32\TabRuntime.h">
<Filter>common.win32</Filter>
</ClInclude>
<ClInclude Include="..\Common.win32\TabXml.h">
<Filter>common.win32</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\16inst_c.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\8inst_c.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\8inst_s.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\adb.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\async_event.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\clock.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\compression.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\config.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\defc.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\defcomm.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\defs.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\defs_instr.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\disas.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\driver.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\graphcounter.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\iwm.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\iwm_35_525.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\kegsfont.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\kegsversion.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\marinetti.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\moremem.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\op_routs.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\paddles.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\prodos.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\prodos_protos.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\protos.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\protos_engine_c.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\protos_macdriver.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\protos_macsnd_driver.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\protos_windriver.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\protos_xdriver.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\raster.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\SaveState.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\scc.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\sim65816.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\size_c.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\size_tab.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\sound.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\StdString.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\superhires.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Src\video.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="cgfiltyp.h">
<Filter>activegs.exe</Filter>
</ClInclude>
<ClInclude Include="ActiveGSApp.h">
<Filter>activegs.exe\Header Files</Filter>
</ClInclude>
<ClInclude Include="MainFrm.h">
<Filter>activegs.exe\Header Files</Filter>
</ClInclude>
<ClInclude Include="Resource.h">
<Filter>activegs.exe\Header Files</Filter>
</ClInclude>
<ClInclude Include="stdafx.h">
<Filter>activegs.exe\Header Files</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Win\dirent-win32.h">
<Filter>win</Filter>
</ClInclude>
<ClInclude Include="..\kegs\Win\winresource.h">
<Filter>win</Filter>
</ClInclude>
<ClInclude Include="resource1.h" />
<ClInclude Include="..\kegs\Src\bigfile.h">
<Filter>Src\H</Filter>
</ClInclude>
<ClInclude Include="..\Libraries\libpng\png.h">
<Filter>libpng</Filter>
</ClInclude>
<ClInclude Include="..\Libraries\libpng\pngconf.h">
<Filter>libpng</Filter>
</ClInclude>
<ClInclude Include="..\Libraries\zlib123\crc32.h">
<Filter>zlib</Filter>
</ClInclude>
<ClInclude Include="..\Libraries\unzip101e\crypt.h">
<Filter>unzip</Filter>
</ClInclude>
<ClInclude Include="..\Libraries\zlib123\deflate.h">
<Filter>unzip</Filter>
</ClInclude>
<ClInclude Include="..\Libraries\zlib123\inftrees.h">
<Filter>zlib</Filter>
</ClInclude>
<ClInclude Include="..\Libraries\zlib123\inffast.h">
<Filter>zlib</Filter>
</ClInclude>
<ClInclude Include="..\Libraries\zlib123\inffixed.h">
<Filter>zlib</Filter>
</ClInclude>
<ClInclude Include="..\Libraries\zlib123\inflate.h">
<Filter>zlib</Filter>
</ClInclude>
<ClInclude Include="..\Libraries\unzip101e\iowin32.h">
<Filter>unzip</Filter>
</ClInclude>
<ClInclude Include="..\Libraries\unzip101e\ioapi.h">
<Filter>unzip</Filter>
</ClInclude>
<ClInclude Include="..\Libraries\zlib123\trees.h">
<Filter>zlib</Filter>
</ClInclude>
<ClInclude Include="..\Libraries\unzip101e\unzip.h">
<Filter>unzip</Filter>
</ClInclude>
<ClInclude Include="..\Libraries\zlib123\zconf.h">
<Filter>zlib</Filter>
</ClInclude>
<ClInclude Include="..\Libraries\zlib123\zconf.in.h">
<Filter>zlib</Filter>
</ClInclude>
<ClInclude Include="..\Libraries\unzip101e\zip.h">
<Filter>unzip</Filter>
</ClInclude>
<ClInclude Include="..\Libraries\zlib123\zutil.h">
<Filter>zlib</Filter>
</ClInclude>
<ClInclude Include="..\Libraries\zlib123\zlib.h">
<Filter>zlib</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="..\Common.win32\ActiveCommon.rc">
<Filter>common.win32</Filter>
</ResourceCompile>
<ResourceCompile Include="..\Common.win32\ActiveGS.rc">
<Filter>common.win32</Filter>
</ResourceCompile>
<ResourceCompile Include="..\Common.win32\console.rc">
<Filter>common.win32</Filter>
</ResourceCompile>
<ResourceCompile Include="ActiveGSApp.rc">
<Filter>activegs.exe\Header Files</Filter>
</ResourceCompile>
</ItemGroup>
<ItemGroup>
<Xml Include="..\run\activegsappconfig.xml">
<Filter>Run</Filter>
</Xml>
</ItemGroup>
<ItemGroup>
<Image Include="res\ActiveGSApp.ico">
<Filter>activegs.exe\Header Files</Filter>
</Image>
<Image Include="..\Common32\bitmap2.bmp" />
<Image Include="..\Common.win32\bitmap2.bmp" />
<Image Include="..\Common.win32\bmp00001.bmp" />
<Image Include="..\Common32\disk52.bmp" />
<Image Include="..\Common.win32\disk52.bmp" />
<Image Include="..\Common32\disk54.bmp" />
<Image Include="..\Common.win32\disk54.bmp" />
<Image Include="..\Common.win32\disk55.bmp" />
<Image Include="..\Common32\disk55.bmp" />
<Image Include="res\idr_22mg.ico" />
<Image Include="res\idr_2mg1.ico" />
<Image Include="res\idr_main.ico" />
<Image Include="res\Toolbar.bmp" />
</ItemGroup>
<ItemGroup>
<Manifest Include="res\ActiveGSApp.manifest" />
</ItemGroup>
<ItemGroup>
<None Include="..\Common.win32\cursor1.cur" />
</ItemGroup>
<ItemGroup>
<Media Include="..\Common\sounds\Spin Up Search 1.wav" />
<Media Include="..\Common\sounds\Spin Up Search 2.wav" />
</ItemGroup>
</Project>

Binary file not shown.

View File

@ -0,0 +1,80 @@
// ActiveGSApp.cpp : Définit les comportements de classe pour l'application.
//
#include "../Common.win32/stdafx.h"
#include "ActiveGSApp.h"
#include "MainFrm.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CActiveGSAppAp
BEGIN_MESSAGE_MAP(CActiveGSAppApp, CWinApp)
// ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
END_MESSAGE_MAP()
// construction CActiveGSAppApp
CActiveGSAppApp::CActiveGSAppApp()
{
// TODO : ajoutez ici du code de construction,
// Placez toutes les initialisations significatives dans InitInstance
}
// Seul et unique objet CActiveGSAppApp
CActiveGSAppApp theApp;
// initialisation CActiveGSAppApp
BOOL CActiveGSAppApp::InitInstance()
{
// InitCommonControls() est requis sur Windows XP si le manifeste de l'application
// spécifie l'utilisation de ComCtl32.dll version 6 ou ultérieure pour activer
// les styles visuels. Dans le cas contraire, la création de fenêtres échouera.
InitCommonControls();
CWinApp::InitInstance();
// Initialiser les bibliothèques OLE
if (!AfxOleInit())
{
AfxMessageBox(IDP_OLE_INIT_FAILED);
return FALSE;
}
AfxEnableControlContainer();
// Initialisation standard
// Si vous n'utilisez pas ces fonctionnalités et que vous souhaitez réduire la taille
// de votre exécutable final, vous devez supprimer ci-dessous
// les routines d'initialisation spécifiques dont vous n'avez pas besoin.
// Changez la clé de Registre sous laquelle nos paramètres sont enregistrés.
// TODO : Modifiez cette chaîne avec des informations appropriées,
// telles que le nom de votre société ou organisation
SetRegistryKey(_T("Applications locales générées par AppWizard"));
// Pour créer la fenêtre principale, ce code crée un nouvel objet fenêtre frame
// qu'il définit ensuite en tant qu'objet fenêtre principale de l'application
int argc = __argc;
char** argv = __argv;
CMainFrame* pFrame = new CMainFrame(argc,argv);
if (!pFrame)
return FALSE;
m_pMainWnd = pFrame;
// MEts à jour le nom de la fenetre
// La seule fenêtre a été initialisée et peut donc être affichée et mise à jour
pFrame->ShowWindow(SW_SHOW);
pFrame->UpdateWindow();
// appelle DragAcceptFiles uniquement s'il y a un suffixe
// Dans une application SDI, cet appel doit avoir lieu juste après ProcessShellCommand
return TRUE;
}

View File

@ -0,0 +1,32 @@
// ActiveGSApp.h : fichier d'en-tête principal pour l'application ActiveGSApp
//
#pragma once
#ifndef __AFXWIN_H__
#error inclut 'stdafx.h' avant d'inclure ce fichier pour PCH
#endif
#include "resource.h" // symboles principaux
// CActiveGSAppApp :
// Consultez ActiveGSApp.cpp pour l'implémentation de cette classe
//
class CActiveGSAppApp : public CWinApp
{
public:
CActiveGSAppApp();
// Substitutions
public:
virtual BOOL InitInstance();
// Implémentation
public:
// afx_msg void OnAppAbout();
DECLARE_MESSAGE_MAP()
};
extern CActiveGSAppApp theApp;

323
ActiveGS.exe/ActiveGSApp.rc Normal file
View File

@ -0,0 +1,323 @@
// Microsoft Visual C++ generated resource script.
//
#include "resource.h"
#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 2 resource.
//
#include "afxres.h"
/////////////////////////////////////////////////////////////////////////////
#undef APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
// French (France) resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_FRA)
#ifdef _WIN32
LANGUAGE LANG_FRENCH, SUBLANG_FRENCH
#pragma code_page(1252)
#endif //_WIN32
#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//
1 TEXTINCLUDE
BEGIN
"resource.h\0"
END
2 TEXTINCLUDE
BEGIN
"#include ""afxres.h""\r\n"
"\0"
END
3 TEXTINCLUDE
BEGIN
"#define _AFX_NO_SPLITTER_RESOURCES\r\n"
"#define _AFX_NO_OLE_RESOURCES\r\n"
"#define _AFX_NO_TRACKER_RESOURCES\r\n"
"#define _AFX_NO_PROPERTY_RESOURCES\r\n"
"\r\n"
"#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_FRA)\r\n"
"LANGUAGE 12, 1\r\n"
"#pragma code_page(1252)\r\n"
"#include ""res\\ActiveGSApp.rc2"" // ressources non modifiées par Microsoft Visual C++ \r\n"
"#include ""afxres.rc"" // Composants standard\r\n"
"#endif\r\n"
"\0"
END
#endif // APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Icon
//
// Icon with lowest ID value placed first to ensure application icon
// remains consistent on all systems.
IDR_MAINFRAME ICON "res\\ActiveGSApp.ico"
IDR_2DSK ICON "res\\idr_2mg1.ico"
IDR_32MG ICON "res\\idr_22mg.ico"
/////////////////////////////////////////////////////////////////////////////
//
// Bitmap
//
IDR_MAINFRAME BITMAP "res\\Toolbar.bmp"
/////////////////////////////////////////////////////////////////////////////
//
// Toolbar
//
IDR_MAINFRAME TOOLBAR 16, 15
BEGIN
BUTTON ID_EDIT_CUT
BUTTON ID_EDIT_COPY
BUTTON ID_EDIT_PASTE
SEPARATOR
BUTTON ID_APP_ABOUT
END
/////////////////////////////////////////////////////////////////////////////
//
// Menu
//
IDR_MAINFRAME MENU
BEGIN
POPUP "&Fichier"
BEGIN
MENUITEM "&quitter", ID_APP_EXIT
END
POPUP "&Edition"
BEGIN
MENUITEM "&Annuler\tCtrl+Z", ID_EDIT_UNDO
MENUITEM SEPARATOR
MENUITEM "&Couper\tCtrl+X", ID_EDIT_CUT
MENUITEM "C&opier\tCtrl+C", ID_EDIT_COPY
MENUITEM "Co&ller\tCtrl+V", ID_EDIT_PASTE
END
POPUP "&Affichage"
BEGIN
MENUITEM "&barre d'outils", ID_VIEW_TOOLBAR
MENUITEM "&barre d'état", ID_VIEW_STATUS_BAR
END
POPUP "&Aide"
BEGIN
MENUITEM "&À propos de ActiveGSApp...", ID_APP_ABOUT
END
END
/////////////////////////////////////////////////////////////////////////////
//
// Accelerator
//
IDR_MAINFRAME ACCELERATORS
BEGIN
"C", ID_EDIT_COPY, VIRTKEY, CONTROL, NOINVERT
"V", ID_EDIT_PASTE, VIRTKEY, CONTROL, NOINVERT
VK_BACK, ID_EDIT_UNDO, VIRTKEY, ALT, NOINVERT
VK_DELETE, ID_EDIT_CUT, VIRTKEY, SHIFT, NOINVERT
VK_F6, ID_NEXT_PANE, VIRTKEY, NOINVERT
VK_F6, ID_PREV_PANE, VIRTKEY, SHIFT, NOINVERT
VK_INSERT, ID_EDIT_COPY, VIRTKEY, CONTROL, NOINVERT
VK_INSERT, ID_EDIT_PASTE, VIRTKEY, SHIFT, NOINVERT
"X", ID_EDIT_CUT, VIRTKEY, CONTROL, NOINVERT
"Z", ID_EDIT_UNDO, VIRTKEY, CONTROL, NOINVERT
END
/////////////////////////////////////////////////////////////////////////////
//
// Dialog
//
IDD_ABOUTBOX DIALOGEX 0, 0, 235, 55
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "À propos de ActiveGSApp"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
ICON IDR_MAINFRAME,IDC_STATIC,11,17,20,20
LTEXT "ActiveGSApp Version 1.0",IDC_STATIC,40,10,119,8,SS_NOPREFIX
LTEXT "Copyright (C) 2003",IDC_STATIC,40,25,119,8
DEFPUSHBUTTON "OK",IDOK,178,7,50,16,WS_GROUP
END
/////////////////////////////////////////////////////////////////////////////
//
// Version
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 3,7,1199,0
PRODUCTVERSION 3,7,1199,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x4L
FILETYPE 0x1L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040c04e4"
BEGIN
VALUE "CompanyName", "Second Sight Software"
VALUE "FileDescription", "ActiveGS StandAlone Application"
VALUE "FileVersion", "3.7.1199"
VALUE "InternalName", "ActiveGS.exe"
VALUE "LegalCopyright", "(c) Second Sight Software 2009-2011"
VALUE "OriginalFilename", "ActiveGSApp.exe"
VALUE "ProductName", "ActiveGS Standalone Application"
VALUE "ProductVersion", "3.7.1199"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x40c, 1252
END
END
/////////////////////////////////////////////////////////////////////////////
//
// DESIGNINFO
//
#ifdef APSTUDIO_INVOKED
GUIDELINES DESIGNINFO
BEGIN
IDD_ABOUTBOX, DIALOG
BEGIN
LEFTMARGIN, 7
RIGHTMARGIN, 228
TOPMARGIN, 7
BOTTOMMARGIN, 48
END
END
#endif // APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// String Table
//
STRINGTABLE
BEGIN
IDR_MAINFRAME "ActiveGSApp"
END
STRINGTABLE
BEGIN
AFX_IDS_APP_TITLE "ActiveGSApp"
AFX_IDS_IDLEMESSAGE "Prêt"
END
STRINGTABLE
BEGIN
ID_INDICATOR_EXT "EXT"
ID_INDICATOR_CAPS "MAJ"
ID_INDICATOR_NUM "NUM"
ID_INDICATOR_SCRL "DÉFIL"
ID_INDICATOR_OVR "RFP"
ID_INDICATOR_REC "ENR"
END
STRINGTABLE
BEGIN
ID_APP_ABOUT "Affiche des informations concernant le programme, le numéro de version et le copyright\nÀ propos de"
ID_APP_EXIT "Quitte l'application et invite à enregistrer les documents\nQuitter"
END
STRINGTABLE
BEGIN
ID_NEXT_PANE "Bascule vers le volet de fenêtre suivant\nVolet suivant"
ID_PREV_PANE "Bascule vers le volet de fenêtre précédent\nVolet précédent"
END
STRINGTABLE
BEGIN
ID_WINDOW_SPLIT "Fractionne la fenêtre active en volets\nFractionner"
END
STRINGTABLE
BEGIN
ID_EDIT_CLEAR "Efface la sélection\nEffacer"
ID_EDIT_CLEAR_ALL "Efface tout\nEffacer tout"
ID_EDIT_COPY "Copie la sélection et la place dans le Presse-papiers\nCopier"
ID_EDIT_CUT "Coupe la sélection et la place dans le Presse-papiers\nCouper"
ID_EDIT_FIND "Recherche le texte spécifié\nRechercher"
ID_EDIT_PASTE "Insère le contenu du presse-papiers\nColler"
ID_EDIT_REPEAT "Répète la dernière action\nRépéter"
ID_EDIT_REPLACE "Remplace un texte spécifié par un texte différent\nRemplacer"
ID_EDIT_SELECT_ALL "Sélectionne la totalité du document\nSélectionner tout"
ID_EDIT_UNDO "Annule la dernière action\nAnnuler"
ID_EDIT_REDO "Rétablit l'action précédemment annulée\nRétablir"
END
STRINGTABLE
BEGIN
ID_VIEW_TOOLBAR "Affiche ou masque la barre d'outils\nActiver/Désactiver Barre d'outils"
ID_VIEW_STATUS_BAR "Affiche ou masque la barre d'état\nActiver/Désactiver Barre d'état"
END
STRINGTABLE
BEGIN
AFX_IDS_SCSIZE "Modifie la taille de la fenêtre"
AFX_IDS_SCMOVE "Modifie la position de la fenêtre"
AFX_IDS_SCMINIMIZE "Affiche la fenêtre sous forme d'icône"
AFX_IDS_SCMAXIMIZE "Affiche la fenêtre en plein écran"
AFX_IDS_SCNEXTWINDOW "Bascule vers la fenêtre de document suivante"
AFX_IDS_SCPREVWINDOW "Bascule vers la fenêtre de document précédente"
AFX_IDS_SCCLOSE "Ferme la fenêtre active et propose l'enregistrement des documents"
END
STRINGTABLE
BEGIN
AFX_IDS_SCRESTORE "Restaure la fenêtre à sa taille normale"
AFX_IDS_SCTASKLIST "Active la liste des tâches"
END
#endif // French (France) resources
/////////////////////////////////////////////////////////////////////////////
#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 3 resource.
//
#define _AFX_NO_SPLITTER_RESOURCES
#define _AFX_NO_OLE_RESOURCES
#define _AFX_NO_TRACKER_RESOURCES
#define _AFX_NO_PROPERTY_RESOURCES
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_FRA)
LANGUAGE 12, 1
#pragma code_page(1252)
#include "res\ActiveGSApp.rc2" // ressources non modifiées par Microsoft Visual C++
#include "afxres.rc" // Composants standard
#endif
/////////////////////////////////////////////////////////////////////////////
#endif // not APSTUDIO_INVOKED

View File

@ -0,0 +1,323 @@
// Microsoft Visual C++ generated resource script.
//
#include "resource.h"
#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 2 resource.
//
#include "afxres.h"
/////////////////////////////////////////////////////////////////////////////
#undef APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
// French (France) resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_FRA)
#ifdef _WIN32
LANGUAGE LANG_FRENCH, SUBLANG_FRENCH
#pragma code_page(1252)
#endif //_WIN32
#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//
1 TEXTINCLUDE
BEGIN
"resource.h\0"
END
2 TEXTINCLUDE
BEGIN
"#include ""afxres.h""\r\n"
"\0"
END
3 TEXTINCLUDE
BEGIN
"#define _AFX_NO_SPLITTER_RESOURCES\r\n"
"#define _AFX_NO_OLE_RESOURCES\r\n"
"#define _AFX_NO_TRACKER_RESOURCES\r\n"
"#define _AFX_NO_PROPERTY_RESOURCES\r\n"
"\r\n"
"#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_FRA)\r\n"
"LANGUAGE 12, 1\r\n"
"#pragma code_page(1252)\r\n"
"#include ""res\\ActiveGSApp.rc2"" // ressources non modifiées par Microsoft Visual C++ \r\n"
"#include ""afxres.rc"" // Composants standard\r\n"
"#endif\r\n"
"\0"
END
#endif // APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Icon
//
// Icon with lowest ID value placed first to ensure application icon
// remains consistent on all systems.
IDR_MAINFRAME ICON "res\\ActiveGSApp.ico"
IDR_2DSK ICON "res\\idr_2mg1.ico"
IDR_32MG ICON "res\\idr_22mg.ico"
/////////////////////////////////////////////////////////////////////////////
//
// Bitmap
//
IDR_MAINFRAME BITMAP "res\\Toolbar.bmp"
/////////////////////////////////////////////////////////////////////////////
//
// Toolbar
//
IDR_MAINFRAME TOOLBAR 16, 15
BEGIN
BUTTON ID_EDIT_CUT
BUTTON ID_EDIT_COPY
BUTTON ID_EDIT_PASTE
SEPARATOR
BUTTON ID_APP_ABOUT
END
/////////////////////////////////////////////////////////////////////////////
//
// Menu
//
IDR_MAINFRAME MENU
BEGIN
POPUP "&Fichier"
BEGIN
MENUITEM "&quitter", ID_APP_EXIT
END
POPUP "&Edition"
BEGIN
MENUITEM "&Annuler\tCtrl+Z", ID_EDIT_UNDO
MENUITEM SEPARATOR
MENUITEM "&Couper\tCtrl+X", ID_EDIT_CUT
MENUITEM "C&opier\tCtrl+C", ID_EDIT_COPY
MENUITEM "Co&ller\tCtrl+V", ID_EDIT_PASTE
END
POPUP "&Affichage"
BEGIN
MENUITEM "&barre d'outils", ID_VIEW_TOOLBAR
MENUITEM "&barre d'état", ID_VIEW_STATUS_BAR
END
POPUP "&Aide"
BEGIN
MENUITEM "&À propos de ActiveGSApp...", ID_APP_ABOUT
END
END
/////////////////////////////////////////////////////////////////////////////
//
// Accelerator
//
IDR_MAINFRAME ACCELERATORS
BEGIN
"C", ID_EDIT_COPY, VIRTKEY, CONTROL, NOINVERT
"V", ID_EDIT_PASTE, VIRTKEY, CONTROL, NOINVERT
VK_BACK, ID_EDIT_UNDO, VIRTKEY, ALT, NOINVERT
VK_DELETE, ID_EDIT_CUT, VIRTKEY, SHIFT, NOINVERT
VK_F6, ID_NEXT_PANE, VIRTKEY, NOINVERT
VK_F6, ID_PREV_PANE, VIRTKEY, SHIFT, NOINVERT
VK_INSERT, ID_EDIT_COPY, VIRTKEY, CONTROL, NOINVERT
VK_INSERT, ID_EDIT_PASTE, VIRTKEY, SHIFT, NOINVERT
"X", ID_EDIT_CUT, VIRTKEY, CONTROL, NOINVERT
"Z", ID_EDIT_UNDO, VIRTKEY, CONTROL, NOINVERT
END
/////////////////////////////////////////////////////////////////////////////
//
// Dialog
//
IDD_ABOUTBOX DIALOGEX 0, 0, 235, 55
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "À propos de ActiveGSApp"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
ICON IDR_MAINFRAME,IDC_STATIC,11,17,20,20
LTEXT "ActiveGSApp Version 1.0",IDC_STATIC,40,10,119,8,SS_NOPREFIX
LTEXT "Copyright (C) 2003",IDC_STATIC,40,25,119,8
DEFPUSHBUTTON "OK",IDOK,178,7,50,16,WS_GROUP
END
/////////////////////////////////////////////////////////////////////////////
//
// Version
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION $MAJORVER$,$MINORVER$,$WCREV$,0
PRODUCTVERSION $MAJORVER$,$MINORVER$,$WCREV$,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x4L
FILETYPE 0x1L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040c04e4"
BEGIN
VALUE "CompanyName", "Second Sight Software"
VALUE "FileDescription", "ActiveGS StandAlone Application"
VALUE "FileVersion", "$MAJORVER$.$MINORVER$.$WCREV$"
VALUE "InternalName", "ActiveGS.exe"
VALUE "LegalCopyright", "(c) Second Sight Software 2009-2011&