CD command now works. Now also compiles in Visual C++ 2008. Switch to Eobet's colourful DOSBox icon.

This commit is contained in:
Carl.Kenner 2009-05-05 15:27:08 +00:00
parent 8d25777582
commit 99d74f8531
10 changed files with 2557 additions and 849 deletions

File diff suppressed because one or more lines are too long

BIN
src/dosbox.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

File diff suppressed because it is too large Load Diff

View File

@ -4,7 +4,7 @@
#define C_DEBUG 0
/* Define to 1 to enable screenshots, requires libpng */
#define C_SSHOT 1
#define C_SSHOT 0
/* Define to 1 to use opengl display output support */
#define C_OPENGL 1

View File

@ -3,6 +3,7 @@
#include <unistd.h>
#include <errno.h>
#include <libgen.h>
#include <sys/stat.h>
#include "dos_inc.h"
#define MAX_FILENAME_LENGTH 256
@ -21,13 +22,10 @@ char * dirname(char * file) {
}
}
int access(const char *path, int amode) {
FILE *F = fopen(path, "rb");
if (F) {
fclose(F);
return 0;
} else {
return ENOENT;
}
struct stat st;
bool folderExists = (stat(path, &st) == 0);
if (folderExists) return 0;
else return ENOENT;
}
int rmdir(const char *path) {
return remove(path);

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type='text/xsl' href='_UpgradeReport_Files/UpgradeReport.xslt'?><UpgradeLog>
<Properties><Property Name="Solution" Value="dosbox">
</Property><Property Name="Solution File" Value="D:\wii\Projects\dosbox-wii\visualc_net\dosbox.sln">
</Property><Property Name="Date" Value="Tuesday, 5 May 2009">
</Property><Property Name="Time" Value="22:30 PM">
</Property></Properties><Event ErrorLevel="0" Project="" Source="dosbox.sln" Description="File successfully backed up as D:\wii\Projects\dosbox-wii\visualc_net\dosbox.sln.old">
</Event><Event ErrorLevel="0" Project="dosbox" Source="dosbox.vcproj" Description="Web deployment to the local IIS server is no longer supported. The Web Deployment build tool has been removed from your project settings.">
</Event><Event ErrorLevel="1" Project="dosbox" Source="dosbox.vcproj" Description="The C/C++ compiler switch /Og has been deprecated and has been removed from your project settings. It is recommended that you use /O1 or /O2 instead.">
</Event><Event ErrorLevel="0" Project="dosbox" Source="dosbox.vcproj" Description="Visual C++ now provides improved safety in its C and C++ Libraries. This includes new and improved functions, additional checking and validation, and internal design changes. These libraries are turned on by default. You may see some warnings about unsafe functions or parameters when you build your project. The warnings will generally suggest an alternative safer coding style or function. It is advised that you correct these warnings, in order to make your code more safe. Full details can be found in the documentation by searching for 'Security Enhancements in the CRT' and for 'Checked Iterators'.">
</Event><Event ErrorLevel="0" Project="dosbox" Source="dosbox.vcproj" Description="The C/C++ compiler default settings have been modified to be more compliant with ISO Standard C++. Included in those changes are enforcing Standard C++ for loop scoping and supporting wchar_t as a native type. These changes may cause existing code to no longer compile without changes to the code or the compiler options with which it is built.">
</Event><Event ErrorLevel="1" Project="dosbox" Source="dosbox.vcproj" Description="Due to the requirement that Visual C++ projects produce an embedded (by default) Windows SxS manifest, manifest files in the project are now automatically built with the Manifest Tool. You may need to change your build in order for it to work correctly. For instance, it is recommended that the dependency information contained in any manifest files be converted to &quot;#pragma comment(linker,&quot;&lt;insert dependency here&gt;&quot;)&quot; in a header file that is included from your source code. If your project already embeds a manifest in the RT_MANIFEST resource section through a resource (.rc) file, the line may need to be commented out before the project will build correctly.">
</Event><Event ErrorLevel="1" Project="dosbox" Source="dosbox.vcproj" Description="Due to a conformance change in the C++ compiler, code change may be required before your project will build without errors. Previous versions of the C++ compiler allowed specification of member function pointers by member function name (e.g. MemberFunctionName). The C++ standard requires a fully qualified name with the use of the address-of operator (e.g. &amp;ClassName::MemberFunctionName). If your project contains forms or controls used in the Windows Forms Designer, you may have to change code in InitializeComponent because the designer generated code used the non-conformant syntax in delegate construction (used in event handlers).">
</Event><Event ErrorLevel="1" Project="dosbox" Source="dosbox.vcproj" Description="This application has been updated to include settings related to the User Account Control (UAC) feature of Windows Vista. By default, when run on Windows Vista with UAC enabled, this application is marked to run with the same privileges as the process that launched it. This marking also disables the application from running with virtualization. You can change UAC related settings from the Property Pages of the project.">
</Event><Event ErrorLevel="0" Project="dosbox" Source="dosbox.vcproj" Description="Project file successfully backed up as 'D:\wii\projects\dosbox-wii\visualc_net\dosbox.vcproj.7.10.old'.">
</Event><Event ErrorLevel="0" Project="dosbox" Source="dosbox.vcproj" Description="Project upgraded successfully.">
</Event><Event ErrorLevel="3" Project="dosbox" Source="dosbox.vcproj" Description="Converted">
</Event><Event ErrorLevel="0" Project="" Source="dosbox.sln" Description="Solution converted successfully">
</Event><Event ErrorLevel="3" Project="" Source="dosbox.sln" Description="Converted">
</Event></UpgradeLog>

View File

@ -1,21 +1,19 @@
Microsoft Visual Studio Solution File, Format Version 8.00
Microsoft Visual Studio Solution File, Format Version 10.00
# Visual C++ Express 2008
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dosbox", "dosbox.vcproj", "{7FCFFB9B-8629-4D51-849C-8490CECF8AB7}"
ProjectSection(ProjectDependencies) = postProject
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfiguration) = preSolution
Debug = Debug
Release = Release
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
Release|Win32 = Release|Win32
EndGlobalSection
GlobalSection(ProjectConfiguration) = postSolution
{7FCFFB9B-8629-4D51-849C-8490CECF8AB7}.Debug.ActiveCfg = Debug|Win32
{7FCFFB9B-8629-4D51-849C-8490CECF8AB7}.Debug.Build.0 = Debug|Win32
{7FCFFB9B-8629-4D51-849C-8490CECF8AB7}.Release.ActiveCfg = Release|Win32
{7FCFFB9B-8629-4D51-849C-8490CECF8AB7}.Release.Build.0 = Release|Win32
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7FCFFB9B-8629-4D51-849C-8490CECF8AB7}.Debug|Win32.ActiveCfg = Debug|Win32
{7FCFFB9B-8629-4D51-849C-8490CECF8AB7}.Debug|Win32.Build.0 = Debug|Win32
{7FCFFB9B-8629-4D51-849C-8490CECF8AB7}.Release|Win32.ActiveCfg = Release|Win32
{7FCFFB9B-8629-4D51-849C-8490CECF8AB7}.Release|Win32.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
EndGlobalSection
GlobalSection(ExtensibilityAddIns) = postSolution
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,21 @@
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dosbox", "dosbox.vcproj", "{7FCFFB9B-8629-4D51-849C-8490CECF8AB7}"
ProjectSection(ProjectDependencies) = postProject
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfiguration) = preSolution
Debug = Debug
Release = Release
EndGlobalSection
GlobalSection(ProjectConfiguration) = postSolution
{7FCFFB9B-8629-4D51-849C-8490CECF8AB7}.Debug.ActiveCfg = Debug|Win32
{7FCFFB9B-8629-4D51-849C-8490CECF8AB7}.Debug.Build.0 = Debug|Win32
{7FCFFB9B-8629-4D51-849C-8490CECF8AB7}.Release.ActiveCfg = Release|Win32
{7FCFFB9B-8629-4D51-849C-8490CECF8AB7}.Release.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
EndGlobalSection
GlobalSection(ExtensibilityAddIns) = postSolution
EndGlobalSection
EndGlobal

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,892 @@
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="7.10"
Name="dosbox"
SccProjectName=""
SccLocalPath="">
<Platforms>
<Platform
Name="Win32"/>
</Platforms>
<Configurations>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
ConfigurationType="1"
UseOfMFC="0"
ATLMinimizesCRunTimeLibraryUsage="FALSE"
CharacterSet="2">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
AdditionalIncludeDirectories="../include,../src/platform/visualc"
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
BasicRuntimeChecks="3"
RuntimeLibrary="3"
RuntimeTypeInfo="TRUE"
PrecompiledHeaderFile=".\Debug/dosbox.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName=".\Debug/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="TRUE"
DebugInformationFormat="4"
CompileAs="0"/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalDependencies="opengl32.lib sdl_net.lib winmm.lib zlib.lib libpng.lib sdlmain.lib sdl.lib curses.lib odbc32.lib odbccp32.lib ws2_32.lib"
OutputFile=".\Debug/dosbox.exe"
LinkIncremental="1"
SuppressStartupBanner="TRUE"
GenerateDebugInformation="TRUE"
ProgramDatabaseFile=".\Debug/dosbox.pdb"
SubSystem="1"
TargetMachine="1"/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\Debug/dosbox.tlb"
HeaderFileName=""/>
<Tool
Name="VCPostBuildEventTool"/>
<Tool
Name="VCPreBuildEventTool"/>
<Tool
Name="VCPreLinkEventTool"/>
<Tool
Name="VCResourceCompilerTool"
PreprocessorDefinitions="_DEBUG"
Culture="1033"/>
<Tool
Name="VCWebServiceProxyGeneratorTool"/>
<Tool
Name="VCXMLDataGeneratorTool"/>
<Tool
Name="VCWebDeploymentTool"/>
<Tool
Name="VCManagedWrapperGeneratorTool"/>
<Tool
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
ConfigurationType="1"
UseOfMFC="0"
ATLMinimizesCRunTimeLibraryUsage="FALSE"
CharacterSet="2"
WholeProgramOptimization="FALSE">
<Tool
Name="VCCLCompilerTool"
Optimization="3"
GlobalOptimizations="TRUE"
InlineFunctionExpansion="2"
EnableIntrinsicFunctions="TRUE"
ImproveFloatingPointConsistency="TRUE"
FavorSizeOrSpeed="1"
OmitFramePointers="TRUE"
OptimizeForProcessor="2"
OptimizeForWindowsApplication="TRUE"
AdditionalIncludeDirectories="../include,../src/platform/visualc"
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
StringPooling="TRUE"
RuntimeLibrary="2"
BufferSecurityCheck="FALSE"
EnableFunctionLevelLinking="TRUE"
RuntimeTypeInfo="TRUE"
PrecompiledHeaderFile=".\Release/dosbox.pch"
AssemblerOutput="4"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName=".\Release/"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="TRUE"
DebugInformationFormat="3"
CompileAs="0"/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalDependencies="opengl32.lib winmm.lib zlib.lib libpng.lib sdl_net.lib sdlmain.lib sdl.lib curses.lib odbc32.lib odbccp32.lib ws2_32.lib"
OutputFile=".\Release/dosbox.exe"
LinkIncremental="1"
SuppressStartupBanner="TRUE"
GenerateDebugInformation="TRUE"
ProgramDatabaseFile=""
GenerateMapFile="TRUE"
SubSystem="1"
TargetMachine="1"
FixedBaseAddress="1"/>
<Tool
Name="VCMIDLTool"
TypeLibraryName=".\Release/dosbox.tlb"
HeaderFileName=""/>
<Tool
Name="VCPostBuildEventTool"/>
<Tool
Name="VCPreBuildEventTool"/>
<Tool
Name="VCPreLinkEventTool"/>
<Tool
Name="VCResourceCompilerTool"
PreprocessorDefinitions="NDEBUG"
Culture="1033"/>
<Tool
Name="VCWebServiceProxyGeneratorTool"/>
<Tool
Name="VCXMLDataGeneratorTool"/>
<Tool
Name="VCWebDeploymentTool"/>
<Tool
Name="VCManagedWrapperGeneratorTool"/>
<Tool
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
</Configuration>
</Configurations>
<References>
</References>
<Files>
<Filter
Name="Source Files"
Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
<File
RelativePath="..\src\dosbox.cpp">
</File>
<File
RelativePath="..\src\winres.rc">
</File>
<Filter
Name="cpu"
Filter="">
<File
RelativePath="..\src\cpu\callback.cpp">
</File>
<File
RelativePath="..\src\cpu\core_dyn_x86.cpp">
</File>
<File
RelativePath="..\src\cpu\core_dynrec.cpp">
</File>
<File
RelativePath="..\src\cpu\core_full.cpp">
</File>
<File
RelativePath="..\src\cpu\core_normal.cpp">
</File>
<File
RelativePath="..\src\cpu\core_prefetch.cpp">
</File>
<File
RelativePath="..\src\cpu\core_simple.cpp">
</File>
<File
RelativePath="..\src\cpu\cpu.cpp">
</File>
<File
RelativePath="..\src\cpu\flags.cpp">
</File>
<File
RelativePath="..\src\cpu\instructions.h">
</File>
<File
RelativePath="..\src\cpu\lazyflags.h">
</File>
<File
RelativePath="..\src\cpu\modrm.cpp">
</File>
<File
RelativePath="..\src\cpu\modrm.h">
</File>
<File
RelativePath="..\src\cpu\paging.cpp">
</File>
<Filter
Name="core_normal"
Filter="">
<File
RelativePath="..\src\cpu\core_normal\helpers.h">
</File>
<File
RelativePath="..\src\cpu\core_normal\prefix_0f.h">
</File>
<File
RelativePath="..\src\cpu\core_normal\prefix_66.h">
</File>
<File
RelativePath="..\src\cpu\core_normal\prefix_66_0f.h">
</File>
<File
RelativePath="..\src\cpu\core_normal\prefix_none.h">
</File>
<File
RelativePath="..\src\cpu\core_normal\string.h">
</File>
<File
RelativePath="..\src\cpu\core_normal\support.h">
</File>
<File
RelativePath="..\src\cpu\core_normal\table_ea.h">
</File>
</Filter>
<Filter
Name="core_full"
Filter="">
<File
RelativePath="..\src\cpu\core_full\ea_lookup.h">
</File>
<File
RelativePath="..\src\cpu\core_full\load.h">
</File>
<File
RelativePath="..\src\cpu\core_full\loadwrite.h">
</File>
<File
RelativePath="..\src\cpu\core_full\op.h">
</File>
<File
RelativePath="..\src\cpu\core_full\optable.h">
</File>
<File
RelativePath="..\src\cpu\core_full\save.h">
</File>
<File
RelativePath="..\src\cpu\core_full\string.h">
</File>
<File
RelativePath="..\src\cpu\core_full\support.h">
</File>
</Filter>
<Filter
Name="core_dyn_x86"
Filter="">
<File
RelativePath="..\src\cpu\core_dyn_x86\cache.h">
</File>
<File
RelativePath="..\src\cpu\core_dyn_x86\decoder.h">
</File>
<File
RelativePath="..\src\cpu\core_dyn_x86\dyn_fpu.h">
</File>
<File
RelativePath="..\src\cpu\core_dyn_x86\dyn_fpu_dh.h">
</File>
<File
RelativePath="..\src\cpu\core_dyn_x86\helpers.h">
</File>
<File
RelativePath="..\src\cpu\core_dyn_x86\risc_x86.h">
</File>
<File
RelativePath="..\src\cpu\core_dyn_x86\string.h">
</File>
</Filter>
<Filter
Name="core_dynrec"
Filter="">
<File
RelativePath="..\src\cpu\core_dynrec\cache.h">
</File>
<File
RelativePath="..\src\cpu\core_dynrec\decoder.h">
</File>
<File
RelativePath="..\src\cpu\core_dynrec\decoder_basic.h">
</File>
<File
RelativePath="..\src\cpu\core_dynrec\decoder_opcodes.h">
</File>
<File
RelativePath="..\src\cpu\core_dynrec\dyn_fpu.h">
</File>
<File
RelativePath="..\src\cpu\core_dynrec\operators.h">
</File>
<File
RelativePath="..\src\cpu\core_dynrec\risc_x86.h">
</File>
<File
RelativePath="..\src\cpu\core_dynrec\risc_x64.h">
</File>
</Filter>
</Filter>
<Filter
Name="debug"
Filter="">
<File
RelativePath="..\src\debug\debug.cpp">
</File>
<File
RelativePath="..\src\debug\debug_disasm.cpp">
</File>
<File
RelativePath="..\src\debug\debug_gui.cpp">
</File>
<File
RelativePath="..\src\debug\debug_inc.h">
</File>
<File
RelativePath="..\src\debug\debug_win32.cpp">
</File>
<File
RelativePath="..\src\debug\disasm_tables.h">
</File>
</Filter>
<Filter
Name="dos"
Filter="">
<File
RelativePath="..\src\dos\dev_con.h">
</File>
<File
RelativePath="..\src\dos\dos.cpp">
</File>
<File
RelativePath="..\src\dos\dos_classes.cpp">
</File>
<File
RelativePath="..\src\dos\dos_devices.cpp">
</File>
<File
RelativePath="..\src\dos\dos_execute.cpp">
</File>
<File
RelativePath="..\src\dos\dos_files.cpp">
</File>
<File
RelativePath="..\src\dos\dos_ioctl.cpp">
</File>
<File
RelativePath="..\src\dos\dos_keyboard_layout.cpp">
</File>
<File
RelativePath="..\src\dos\dos_memory.cpp">
</File>
<File
RelativePath="..\src\dos\dos_misc.cpp">
</File>
<File
RelativePath="..\src\dos\dos_mscdex.cpp">
</File>
<File
RelativePath="..\src\dos\dos_programs.cpp">
</File>
<File
RelativePath="..\src\dos\dos_tables.cpp">
</File>
<Filter
Name="win32headers"
Filter="">
<File
RelativePath="..\src\dos\drives.h">
</File>
<File
RelativePath="..\src\dos\Ntddcdrm.h">
</File>
<File
RelativePath="..\src\dos\Ntddscsi.h">
</File>
<File
RelativePath="..\src\dos\Ntddstor.h">
</File>
<File
RelativePath="..\src\dos\scsidefs.h">
</File>
<File
RelativePath="..\src\dos\wnaspi32.h">
</File>
</Filter>
<Filter
Name="cdrom"
Filter="">
<File
RelativePath="..\src\dos\cdrom.cpp">
</File>
<File
RelativePath="..\src\dos\cdrom.h">
</File>
<File
RelativePath="..\src\dos\cdrom_aspi_win32.cpp">
</File>
<File
RelativePath="..\src\dos\cdrom_image.cpp">
</File>
<File
RelativePath="..\src\dos\cdrom_ioctl_win32.cpp">
</File>
</Filter>
<Filter
Name="drives"
Filter="">
<File
RelativePath="..\src\dos\drive_cache.cpp">
</File>
<File
RelativePath="..\src\dos\drive_fat.cpp">
</File>
<File
RelativePath="..\src\dos\drive_iso.cpp">
</File>
<File
RelativePath="..\src\dos\drive_local.cpp">
</File>
<File
RelativePath="..\src\dos\drive_virtual.cpp">
</File>
<File
RelativePath="..\src\dos\drives.cpp">
</File>
</Filter>
</Filter>
<Filter
Name="hardware"
Filter="">
<File
RelativePath="..\src\hardware\cmos.cpp">
</File>
<File
RelativePath="..\src\hardware\dma.cpp">
</File>
<File
RelativePath="..\src\hardware\font-switch.h">
</File>
<File
RelativePath="..\src\hardware\hardware.cpp">
</File>
<File
RelativePath="..\src\hardware\iohandler.cpp">
</File>
<File
RelativePath="..\src\hardware\ipx.cpp">
</File>
<File
RelativePath="..\src\hardware\ipxserver.cpp">
</File>
<File
RelativePath="..\src\hardware\joystick.cpp">
</File>
<File
RelativePath="..\src\hardware\keyboard.cpp">
</File>
<File
RelativePath="..\src\hardware\memory.cpp">
</File>
<File
RelativePath="..\src\hardware\mixer.cpp">
</File>
<File
RelativePath="..\src\hardware\pic.cpp">
</File>
<File
RelativePath="..\src\hardware\timer.cpp">
</File>
<Filter
Name="vga"
Filter="">
<File
RelativePath="..\src\hardware\vga.cpp">
</File>
<File
RelativePath="..\src\hardware\vga_attr.cpp">
</File>
<File
RelativePath="..\src\hardware\vga_crtc.cpp">
</File>
<File
RelativePath="..\src\hardware\vga_dac.cpp">
</File>
<File
RelativePath="..\src\hardware\vga_draw.cpp">
</File>
<File
RelativePath="..\src\hardware\vga_gfx.cpp">
</File>
<File
RelativePath="..\src\hardware\vga_memory.cpp">
</File>
<File
RelativePath="..\src\hardware\vga_misc.cpp">
</File>
<File
RelativePath="..\src\hardware\vga_other.cpp">
</File>
<File
RelativePath="..\src\hardware\vga_paradise.cpp">
</File>
<File
RelativePath="..\src\hardware\vga_s3.cpp">
</File>
<File
RelativePath="..\src\hardware\vga_seq.cpp">
</File>
<File
RelativePath="..\src\hardware\vga_tseng.cpp">
</File>
<File
RelativePath="..\src\hardware\vga_xga.cpp">
</File>
</Filter>
<Filter
Name="sound"
Filter="">
<File
RelativePath="..\src\hardware\adlib.cpp">
</File>
<File
RelativePath="..\src\hardware\dbopl.cpp">
</File>
<File
RelativePath="..\src\hardware\disney.cpp">
</File>
<File
RelativePath="..\src\hardware\gameblaster.cpp">
</File>
<File
RelativePath="..\src\hardware\gus.cpp">
</File>
<File
RelativePath="..\src\hardware\mpu401.cpp">
</File>
<File
RelativePath="..\src\hardware\pcspeaker.cpp">
</File>
<File
RelativePath="..\src\hardware\sblaster.cpp">
</File>
<File
RelativePath="..\src\hardware\tandy_sound.cpp">
</File>
</Filter>
<Filter
Name="serialport"
Filter="">
<File
RelativePath="..\src\hardware\serialport\directserial_os2.cpp">
<FileConfiguration
Name="Release|Win32"
ExcludedFromBuild="TRUE">
<Tool
Name="VCCLCompilerTool"/>
</FileConfiguration>
</File>
<File
RelativePath="..\src\hardware\serialport\directserial_os2.h">
</File>
<File
RelativePath="..\src\hardware\serialport\directserial_posix.cpp">
</File>
<File
RelativePath="..\src\hardware\serialport\directserial_posix.h">
</File>
<File
RelativePath="..\src\hardware\serialport\directserial_win32.cpp">
</File>
<File
RelativePath="..\src\hardware\serialport\directserial_win32.h">
</File>
<File
RelativePath="..\src\hardware\serialport\misc_util.cpp">
</File>
<File
RelativePath="..\src\hardware\serialport\misc_util.h">
</File>
<File
RelativePath="..\src\hardware\serialport\nullmodem.cpp">
</File>
<File
RelativePath="..\src\hardware\serialport\nullmodem.h">
</File>
<File
RelativePath="..\src\hardware\serialport\serialdummy.cpp">
</File>
<File
RelativePath="..\src\hardware\serialport\serialdummy.h">
</File>
<File
RelativePath="..\src\hardware\serialport\serialport.cpp">
</File>
<File
RelativePath="..\src\hardware\serialport\softmodem.cpp">
</File>
<File
RelativePath="..\src\hardware\serialport\softmodem.h">
</File>
</Filter>
</Filter>
<Filter
Name="gui"
Filter="">
<File
RelativePath="..\src\gui\midi.cpp">
</File>
<File
RelativePath="..\src\gui\midi_win32.h">
</File>
<File
RelativePath="..\src\gui\render.cpp">
</File>
<File
RelativePath="..\src\gui\render_scalers.cpp">
</File>
<File
RelativePath="..\src\gui\render_scalers.h">
</File>
<File
RelativePath="..\src\gui\render_templates.h">
</File>
<File
RelativePath="..\src\gui\sdl_gui.cpp">
</File>
<File
RelativePath="..\src\gui\sdl_mapper.cpp">
</File>
<File
RelativePath="..\src\gui\sdlmain.cpp">
</File>
<File
RelativePath="..\src\libs\gui_tk\gui_tk.cpp">
</File>
</Filter>
<Filter
Name="ints"
Filter="">
<File
RelativePath="..\src\ints\bios.cpp">
</File>
<File
RelativePath="..\src\ints\bios_disk.cpp">
</File>
<File
RelativePath="..\src\ints\bios_keyboard.cpp">
</File>
<File
RelativePath="..\src\ints\ems.cpp">
</File>
<File
RelativePath="..\src\ints\mouse.cpp">
</File>
<File
RelativePath="..\src\ints\xms.cpp">
</File>
<File
RelativePath="..\src\ints\xms.h">
</File>
<Filter
Name="int10"
Filter="">
<File
RelativePath="..\src\ints\int10.cpp">
</File>
<File
RelativePath="..\src\ints\int10.h">
</File>
<File
RelativePath="..\src\ints\int10_char.cpp">
</File>
<File
RelativePath="..\src\ints\int10_memory.cpp">
</File>
<File
RelativePath="..\src\ints\int10_misc.cpp">
</File>
<File
RelativePath="..\src\ints\int10_modes.cpp">
</File>
<File
RelativePath="..\src\ints\int10_pal.cpp">
</File>
<File
RelativePath="..\src\ints\int10_put_pixel.cpp">
</File>
<File
RelativePath="..\src\ints\int10_vesa.cpp">
</File>
<File
RelativePath="..\src\ints\int10_video_state.cpp">
</File>
<File
RelativePath="..\src\ints\int10_vptable.cpp">
</File>
</Filter>
</Filter>
<Filter
Name="shell"
Filter="">
<File
RelativePath="..\src\shell\shell.cpp">
</File>
<File
RelativePath="..\src\shell\shell_batch.cpp">
</File>
<File
RelativePath="..\src\shell\shell_cmds.cpp">
</File>
<File
RelativePath="..\src\shell\shell_misc.cpp">
</File>
</Filter>
<Filter
Name="misc"
Filter="">
<File
RelativePath="..\src\misc\cross.cpp">
</File>
<File
RelativePath="..\src\misc\messages.cpp">
</File>
<File
RelativePath="..\src\misc\programs.cpp">
</File>
<File
RelativePath="..\src\misc\setup.cpp">
</File>
<File
RelativePath="..\src\misc\support.cpp">
</File>
</Filter>
<Filter
Name="visualc"
Filter="">
<File
RelativePath="..\src\platform\visualc\config.h">
</File>
<File
RelativePath="..\src\platform\visualc\dirent.c">
</File>
<File
RelativePath="..\src\platform\visualc\dirent.h">
</File>
<File
RelativePath="..\src\platform\visualc\unistd.h">
</File>
</Filter>
<Filter
Name="fpu"
Filter="">
<File
RelativePath="..\src\fpu\fpu.cpp">
</File>
<File
RelativePath="..\src\fpu\fpu_instructions.h">
</File>
<File
RelativePath="..\src\fpu\fpu_instructions_x86.h">
</File>
</Filter>
</Filter>
<Filter
Name="Header Files"
Filter="h;hpp;hxx;hm;inl">
<File
RelativePath="..\include\bios.h">
</File>
<File
RelativePath="..\include\bios_disk.h">
</File>
<File
RelativePath="..\include\callback.h">
</File>
<File
RelativePath="..\include\control.h">
</File>
<File
RelativePath="..\include\cpu.h">
</File>
<File
RelativePath="..\include\cross.h">
</File>
<File
RelativePath="..\include\debug.h">
</File>
<File
RelativePath="..\include\dma.h">
</File>
<File
RelativePath="..\include\dos_inc.h">
</File>
<File
RelativePath="..\include\dos_system.h">
</File>
<File
RelativePath="..\include\dosbox.h">
</File>
<File
RelativePath="..\include\fpu.h">
</File>
<File
RelativePath="..\include\hardware.h">
</File>
<File
RelativePath="..\include\inout.h">
</File>
<File
RelativePath="..\include\joystick.h">
</File>
<File
RelativePath="..\include\keyboard.h">
</File>
<File
RelativePath="..\include\logging.h">
</File>
<File
RelativePath="..\include\mem.h">
</File>
<File
RelativePath="..\include\mixer.h">
</File>
<File
RelativePath="..\include\modules.h">
</File>
<File
RelativePath="..\include\mouse.h">
</File>
<File
RelativePath="..\include\paging.h">
</File>
<File
RelativePath="..\include\pic.h">
</File>
<File
RelativePath="..\include\programs.h">
</File>
<File
RelativePath="..\include\regs.h">
</File>
<File
RelativePath="..\include\render.h">
</File>
<File
RelativePath="..\include\serialport.h">
</File>
<File
RelativePath="..\include\setup.h">
</File>
<File
RelativePath="..\include\shell.h">
</File>
<File
RelativePath="..\include\support.h">
</File>
<File
RelativePath="..\include\timer.h">
</File>
<File
RelativePath="..\include\vga.h">
</File>
<File
RelativePath="..\include\video.h">
</File>
</Filter>
<File
RelativePath="..\src\dosbox.ico">
</File>
</Files>
<Globals>
</Globals>
</VisualStudioProject>