]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
imported winuaesrc1000b8.zip
authorToni Wilen <twilen@winuae.net>
Wed, 11 May 2005 14:33:07 +0000 (17:33 +0300)
committerToni Wilen <twilen@winuae.net>
Mon, 22 Feb 2010 19:25:39 +0000 (21:25 +0200)
22 files changed:
akiko.c
ar.c
blkdev.c
compemu_fpp.c
include/akiko.h
inputdevice.c
od-win32/blkdev_win32_spti.c
od-win32/build68k_msvc/build68k_msvc.vcproj
od-win32/dinput.c
od-win32/genblitter_msvc/genblitter_msvc.vcproj
od-win32/gencomp_msvc/gencomp_msvc.vcproj
od-win32/gencpu_msvc/gencpu_msvc.vcproj
od-win32/picasso96_win.c
od-win32/resources/winuae.exe.manifest
od-win32/resources/winuae_minimal.rc
od-win32/sysconfig.h
od-win32/win32.c
od-win32/win32.h
od-win32/win32gfx.c
od-win32/win32gui.c
od-win32/winuae_msvc/winuae_msvc.vcproj
scsiemul.c

diff --git a/akiko.c b/akiko.c
index dfbdaf9615c8306a7f8b921a7568a1a2100b34a3..5e3919690cd378b0f79ebe978d3548ea48d1133d 100755 (executable)
--- a/akiko.c
+++ b/akiko.c
@@ -1291,8 +1291,6 @@ void akiko_reset (void)
     akiko_cdrom_free ();
 }
 
-extern uae_u32 extendedkickmemory;
-
 static uae_u8 patchdata[]={0x0c,0x82,0x00,0x00,0x03,0xe8,0x64,0x00,0x00,0x46};
 
 static void patchrom (void)
diff --git a/ar.c b/ar.c
index efb638eb93208d287e423ae4a3f363075a430bc0..b579736d081ff62b43a2667a2caf4216184a1fcc 100755 (executable)
--- a/ar.c
+++ b/ar.c
@@ -267,17 +267,17 @@ addrbank hrtmem_bank = {
     hrtmem_xlate, hrtmem_check, NULL
 };
 
-static void copyfromamiga(uae_u8 *dst,uae_u8 *src,int len)
+static void copyfromamiga(uae_u8 *dst,uaecptr src,int len)
 {
 while(len--) {
-    *dst++ = get_byte ((uaecptr)src);
+    *dst++ = get_byte (src);
     src++;
 }
 }
-static void copytoamiga(uae_u8 *dst,uae_u8 *src,int len)
+static void copytoamiga(uaecptr dst,uae_u8 *src,int len)
 {
 while(len--) {
-    put_byte ((uaecptr)dst, *src++);
+    put_byte (dst, *src++);
     dst++;
 }
 }
@@ -398,7 +398,7 @@ STATIC_INLINE int ar3a (uaecptr addr, uae_u8 b, int writing)
         set_special (SPCFLAG_ACTION_REPLAY);
         action_replay_flag = ACTION_REPLAY_HIDE;
     } else if (addr == 6) {
-        copytoamiga ((uae_u8*)regs.vbr + 0x7c, artemp, 4);
+        copytoamiga (regs.vbr + 0x7c, artemp, 4);
         write_log ("AR: chipmem returned\n");
     }
     return 0;
@@ -718,8 +718,8 @@ static void action_replay_go (void)
     memcpy (armemory_ram + 0xf000, ar_custom, 2 * 256);
     action_replay_flag = ACTION_REPLAY_ACTIVE;
     set_special (SPCFLAG_ACTION_REPLAY);
-    copyfromamiga (artemp, (uae_u8*)regs.vbr + 0x7c, 4);
-    copytoamiga ((uae_u8*)regs.vbr+0x7c, armemory_rom + 0x7c, 4);
+    copyfromamiga (artemp, regs.vbr + 0x7c, 4);
+    copytoamiga (regs.vbr+0x7c, armemory_rom + 0x7c, 4);
     Interrupt (7);
 }
 
@@ -737,7 +737,7 @@ static void hrtmon_go (int mode)
     memcpy (hrtmon_custom, ar_custom, 2 * 256);
     hrtmon_flag = ACTION_REPLAY_ACTIVE;
     set_special (SPCFLAG_ACTION_REPLAY);
-    put_long ((uaecptr)((uae_u8*)regs.vbr+0x7c), hrtmem_start + 8 + (mode ? 4 : 0));
+    put_long ((uaecptr)(regs.vbr + 0x7c), hrtmem_start + 8 + (mode ? 4 : 0));
     Interrupt (7);
 }
 
@@ -878,8 +878,8 @@ void action_replay_chipwrite(void)
     {
        /* copy 0x60 addr info to level 7 */
        /* This is to emulate the 0x60 interrupt. */
-       copyfromamiga (artemp, (uae_u8*)regs.vbr + 0x60, 4);
-       copytoamiga ((uae_u8*)regs.vbr + 0x7c, artemp, 4);
+       copyfromamiga (artemp, regs.vbr + 0x60, 4);
+       copytoamiga (regs.vbr + 0x7c, artemp, 4);
        ar_wait_pop = 1; /* Wait for stack to pop. */
  
        action_replay_flag = ACTION_REPLAY_ACTIVATE;
index 07eec9f40a0eb3db83919961f8866925424d3a28..dbc2d38a5e6f1f3f6c311ad96b78e79677ac3e47 100755 (executable)
--- a/blkdev.c
+++ b/blkdev.c
@@ -304,15 +304,13 @@ void scsi_log_before (uae_u8 *cdb, int cdblen, uae_u8 *data, int datalen)
 void scsi_log_after (uae_u8 *data, int datalen, uae_u8 *sense, int senselen)
 {
     int i;
-    if (data) {
-       write_log ("DATAIN: %d\n", datalen);
-       for (i = 0; i < datalen && i < 100; i++)
-           write_log("%s%02.2X", i > 0 ? "." : "", data[i]);
-       if (datalen > 0)
-           write_log("\n");
-    }
+    write_log ("DATAIN: %d\n", datalen);
+    for (i = 0; i < datalen && i < 100 && data; i++)
+        write_log("%s%02.2X", i > 0 ? "." : "", data[i]);
+    if (data && datalen > 0)
+        write_log("\n");
     if (senselen > 0) {
-        write_log("SENSE: ");
+        write_log("SENSE: %d,", senselen);
         for (i = 0; i < senselen && i < 32; i++) {
            write_log("%s%02.2X", i > 0 ? "." : "", sense[i]);
        }
index 7d475949e803fc9d0478e4b01d21d435018a127e..db9564f4b967df53c9e072e66bcf5bc306cde71e 100755 (executable)
@@ -486,6 +486,7 @@ STATIC_INLINE int get_fp_ad (uae_u32 opcode, uae_u32 * ad)
        }
     }
     abort();
+    return -1;
 }
 
 void comp_fdbcc_opp (uae_u32 opcode, uae_u16 extra)
index ca9d61fa529d8e48fff25898987d6c59eda30820..2f6e6b911764487729059bd6dbbccfac325a377e 100755 (executable)
@@ -13,3 +13,4 @@ extern void akiko_exitgui (void);
 extern void AKIKO_hsync_handler (void);
 
 extern int cd32_enabled;
+extern uae_u8 *extendedkickmemory;
index cc784e8dd12f7fe2e48a68541385758b8c1a8456..a55415266358353ba26e694a1ef0bb897fa79c35 100755 (executable)
@@ -893,6 +893,7 @@ uae_u8 handle_parport_joystick (int port, uae_u8 pra, uae_u8 dra)
        return v;
        default:
        abort ();
+       return 0;
     }
 }
 
index 34600cf48a4770b9fb26453b8d50e5bfe7afb2cb..aff70688948f77b4119a35a885eff9b07c69282f 100755 (executable)
@@ -71,6 +71,8 @@ static int doscsi (HANDLE *h, SCSI_PASS_THROUGH_DIRECT_WITH_BUFFER *swb, int *er
     if (log_scsi)
        scsi_log_after (swb->spt.DataIn == SCSI_IOCTL_DATA_IN ? swb->spt.DataBuffer : 0, swb->spt.DataTransferLength,
            swb->SenseBuf, swb->spt.SenseInfoLength);
+    if (swb->spt.SenseInfoLength > 0 && (swb->SenseBuf[0] == 0 || swb->SenseBuf[0] == 1))
+       swb->spt.SenseInfoLength = 0; /* 0 and 1 = success, not error.. */
     if (swb->spt.SenseInfoLength > 0)
        return 0;
     gui_cd_led (1);
@@ -275,19 +277,31 @@ static int isatapi (int unitnum)
     uae_u8 out[36];
     int outlen = sizeof (out);
     uae_u8 *p = execscsicmd_in (unitnum, cmd, sizeof (cmd), &outlen);
-    if (!p)
+    int v = 0;
+
+    if (!p) {
+       if (log_scsi)
+           write_log("INQUIRY failed!?\n");
        return 0;
+    }
     if (outlen >= 2 && (p[0] & 31) == 5 && (p[2] & 7) == 0)
-       return 1;
-    return 0;
+       v = 1;
+    if (log_scsi) {
+       if (outlen >= 36) 
+           write_log("INQUIRY: %02.2X%02.2X%02.2X %d '%-8.8s' '%-16.16s'\n",
+               p[0], p[1], p[2], v, p + 8, p + 16);
+    }
+    return v;
 }
 
 static int mediacheck (int unitnum)
 {
     uae_u8 cmd [6] = { 0,0,0,0,0,0 }; /* TEST UNIT READY */
+    int v;
     if (dev_info[unitnum].handle == INVALID_HANDLE_VALUE)
        return 0;
-    return execscsicmd (unitnum, cmd, sizeof (cmd), 0, 0) >= 0 ? 1 : 0;
+    v = execscsicmd (unitnum, cmd, sizeof (cmd), 0, 0);
+    return v >= 0 ? 1 : 0;
 }
 
 int open_scsi_device (int unitnum)
index 991a29fa0cd044591dde865a0c04bfe2f3f907e8..897949fe15bf38b085323867a16a6c62d71b18c5 100755 (executable)
 <?xml version="1.0" encoding="Windows-1252"?>
 <VisualStudioProject
        ProjectType="Visual C++"
-       Version="7.10"
+       Version="8,00"
        Name="build68k"
        ProjectGUID="{AF3DBBDE-E006-4DC3-9A26-CB0D7D82AE3C}"
-       SccProjectName=""
-       SccLocalPath="">
+       SignManifests="true"
+       >
        <Platforms>
                <Platform
-                       Name="Win32"/>
+                       Name="Win32"
+               />
        </Platforms>
+       <ToolFiles>
+       </ToolFiles>
        <Configurations>
                <Configuration
                        Name="Release|Win32"
                        OutputDirectory=".\Release"
                        IntermediateDirectory=".\Release"
                        ConfigurationType="1"
+                       InheritedPropertySheets="UpgradeFromVC71.vsprops"
                        UseOfMFC="0"
-                       ATLMinimizesCRunTimeLibraryUsage="FALSE"
-                       CharacterSet="2">
+                       ATLMinimizesCRunTimeLibraryUsage="false"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                               TypeLibraryName=".\Release/build68k_msvc.tlb"
+                       />
                        <Tool
                                Name="VCCLCompilerTool"
                                AdditionalOptions=""
                                InlineFunctionExpansion="1"
                                AdditionalIncludeDirectories="..\..\include,..\..,..\"
                                PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
-                               StringPooling="TRUE"
-                               RuntimeLibrary="4"
-                               EnableFunctionLevelLinking="TRUE"
+                               StringPooling="true"
+                               RuntimeLibrary="0"
+                               EnableFunctionLevelLinking="true"
                                PrecompiledHeaderFile=".\Release/build68k_msvc.pch"
                                AssemblerListingLocation=".\Release/"
                                ObjectFile=".\Release/"
                                ProgramDataBaseFileName=".\Release/"
                                WarningLevel="3"
-                               SuppressStartupBanner="TRUE"
-                               CompileAs="0"/>
+                               SuppressStartupBanner="true"
+                               CompileAs="0"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="NDEBUG"
+                               Culture="1033"
+                       />
                        <Tool
-                               Name="VCCustomBuildTool"/>
+                               Name="VCPreLinkEventTool"
+                               Description="deleting cpudefs.c"
+                               CommandLine="del ..\..\cpudefs.c"
+                       />
                        <Tool
                                Name="VCLinkerTool"
                                AdditionalOptions="/MACHINE:I386"
                                OutputFile="build68k.exe"
                                LinkIncremental="1"
-                               SuppressStartupBanner="TRUE"
+                               SuppressStartupBanner="true"
                                ProgramDatabaseFile=".\Release/build68k.pdb"
-                               SubSystem="1"/>
+                               SubSystem="1"
+                       />
                        <Tool
-                               Name="VCMIDLTool"
-                               TypeLibraryName=".\Release/build68k_msvc.tlb"/>
+                               Name="VCALinkTool"
+                       />
                        <Tool
-                               Name="VCPostBuildEventTool"
-                               Description="creating cpudefs.c"
-                               CommandLine="build68k.exe &gt;..\..\cpudefs.c &lt;..\..\table68k"/>
+                               Name="VCManifestTool"
+                       />
                        <Tool
-                               Name="VCPreBuildEventTool"/>
+                               Name="VCXDCMakeTool"
+                       />
                        <Tool
-                               Name="VCPreLinkEventTool"
-                               Description="deleting cpudefs.c"
-                               CommandLine="del ..\..\cpudefs.c"/>
+                               Name="VCBscMakeTool"
+                       />
                        <Tool
-                               Name="VCResourceCompilerTool"
-                               PreprocessorDefinitions="NDEBUG"
-                               Culture="1033"/>
-                       <Tool
-                               Name="VCWebServiceProxyGeneratorTool"/>
-                       <Tool
-                               Name="VCXMLDataGeneratorTool"/>
+                               Name="VCFxCopTool"
+                       />
                        <Tool
-                               Name="VCWebDeploymentTool"/>
+                               Name="VCAppVerifierTool"
+                       />
                        <Tool
-                               Name="VCManagedWrapperGeneratorTool"/>
+                               Name="VCWebDeploymentTool"
+                       />
                        <Tool
-                               Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+                               Name="VCPostBuildEventTool"
+                               Description="creating cpudefs.c"
+                               CommandLine="build68k.exe &gt;..\..\cpudefs.c &lt;..\..\table68k"
+                       />
                </Configuration>
                <Configuration
                        Name="Debug|Win32"
                        OutputDirectory=".\Debug"
                        IntermediateDirectory=".\Debug"
                        ConfigurationType="1"
+                       InheritedPropertySheets="UpgradeFromVC71.vsprops"
                        UseOfMFC="0"
-                       ATLMinimizesCRunTimeLibraryUsage="FALSE"
-                       CharacterSet="2">
+                       ATLMinimizesCRunTimeLibraryUsage="false"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                               TypeLibraryName=".\Debug/build68k_msvc.tlb"
+                       />
                        <Tool
                                Name="VCCLCompilerTool"
                                AdditionalOptions=""
                                AdditionalIncludeDirectories="..\..\include,..\..,..\"
                                PreprocessorDefinitions="WIN32,_DEBUG,_CONSOLE,__STDC__"
                                BasicRuntimeChecks="3"
-                               RuntimeLibrary="5"
+                               RuntimeLibrary="1"
                                PrecompiledHeaderFile=".\Debug/build68k_msvc.pch"
                                AssemblerListingLocation=".\Debug/"
                                ObjectFile=".\Debug/"
                                ProgramDataBaseFileName=".\Debug/"
                                WarningLevel="3"
-                               SuppressStartupBanner="TRUE"
+                               SuppressStartupBanner="true"
                                DebugInformationFormat="4"
-                               CompileAs="0"/>
+                               CompileAs="0"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="_DEBUG"
+                               Culture="1033"
+                       />
                        <Tool
-                               Name="VCCustomBuildTool"/>
+                               Name="VCPreLinkEventTool"
+                               Description="deleting cpudefs.c"
+                               CommandLine="del ..\..\cpudefs.c"
+                       />
                        <Tool
                                Name="VCLinkerTool"
                                AdditionalOptions="/MACHINE:I386"
                                OutputFile="build68k.exe"
                                LinkIncremental="2"
-                               SuppressStartupBanner="TRUE"
-                               GenerateDebugInformation="TRUE"
+                               SuppressStartupBanner="true"
+                               GenerateDebugInformation="true"
                                ProgramDatabaseFile=".\Debug/build68k.pdb"
-                               SubSystem="1"/>
+                               SubSystem="1"
+                       />
                        <Tool
-                               Name="VCMIDLTool"
-                               TypeLibraryName=".\Debug/build68k_msvc.tlb"/>
+                               Name="VCALinkTool"
+                       />
                        <Tool
-                               Name="VCPostBuildEventTool"
-                               Description="creating cpudefs.c"
-                               CommandLine="build68k.exe &gt;..\..\cpudefs.c &lt;..\..\table68k"/>
+                               Name="VCManifestTool"
+                       />
                        <Tool
-                               Name="VCPreBuildEventTool"/>
-                       <Tool
-                               Name="VCPreLinkEventTool"
-                               Description="deleting cpudefs.c"
-                               CommandLine="del ..\..\cpudefs.c"/>
-                       <Tool
-                               Name="VCResourceCompilerTool"
-                               PreprocessorDefinitions="_DEBUG"
-                               Culture="1033"/>
+                               Name="VCXDCMakeTool"
+                       />
                        <Tool
-                               Name="VCWebServiceProxyGeneratorTool"/>
+                               Name="VCBscMakeTool"
+                       />
                        <Tool
-                               Name="VCXMLDataGeneratorTool"/>
+                               Name="VCFxCopTool"
+                       />
                        <Tool
-                               Name="VCWebDeploymentTool"/>
+                               Name="VCAppVerifierTool"
+                       />
                        <Tool
-                               Name="VCManagedWrapperGeneratorTool"/>
+                               Name="VCWebDeploymentTool"
+                       />
                        <Tool
-                               Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+                               Name="VCPostBuildEventTool"
+                               Description="creating cpudefs.c"
+                               CommandLine="build68k.exe &gt;..\..\cpudefs.c &lt;..\..\table68k"
+                       />
                </Configuration>
                <Configuration
                        Name="TestRelease|Win32"
                        OutputDirectory="$(ConfigurationName)"
                        IntermediateDirectory="$(ConfigurationName)"
                        ConfigurationType="1"
+                       InheritedPropertySheets="UpgradeFromVC71.vsprops"
                        UseOfMFC="0"
-                       ATLMinimizesCRunTimeLibraryUsage="FALSE"
-                       CharacterSet="2">
+                       ATLMinimizesCRunTimeLibraryUsage="false"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                               TypeLibraryName=".\Release/build68k_msvc.tlb"
+                       />
                        <Tool
                                Name="VCCLCompilerTool"
                                AdditionalOptions=""
                                InlineFunctionExpansion="1"
                                AdditionalIncludeDirectories="..\..\include,..\..,..\"
                                PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
-                               StringPooling="TRUE"
-                               RuntimeLibrary="4"
-                               EnableFunctionLevelLinking="TRUE"
+                               StringPooling="true"
+                               RuntimeLibrary="0"
+                               EnableFunctionLevelLinking="true"
                                PrecompiledHeaderFile=".\Release/build68k_msvc.pch"
                                AssemblerListingLocation=".\Release/"
                                ObjectFile=".\Release/"
                                ProgramDataBaseFileName=".\Release/"
                                WarningLevel="3"
-                               SuppressStartupBanner="TRUE"
-                               CompileAs="0"/>
+                               SuppressStartupBanner="true"
+                               CompileAs="0"
+                       />
                        <Tool
-                               Name="VCCustomBuildTool"/>
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="NDEBUG"
+                               Culture="1033"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                               Description="deleting cpudefs.c"
+                               CommandLine="del ..\..\cpudefs.c"
+                       />
                        <Tool
                                Name="VCLinkerTool"
                                AdditionalOptions="/MACHINE:I386"
                                OutputFile="build68k.exe"
                                LinkIncremental="1"
-                               SuppressStartupBanner="TRUE"
+                               SuppressStartupBanner="true"
                                ProgramDatabaseFile=".\Release/build68k.pdb"
-                               SubSystem="1"/>
+                               SubSystem="1"
+                       />
                        <Tool
-                               Name="VCMIDLTool"
-                               TypeLibraryName=".\Release/build68k_msvc.tlb"/>
+                               Name="VCALinkTool"
+                       />
                        <Tool
-                               Name="VCPostBuildEventTool"
-                               Description="creating cpudefs.c"
-                               CommandLine="build68k.exe &gt;..\..\cpudefs.c &lt;..\..\table68k"/>
+                               Name="VCManifestTool"
+                       />
                        <Tool
-                               Name="VCPreBuildEventTool"/>
+                               Name="VCXDCMakeTool"
+                       />
                        <Tool
-                               Name="VCPreLinkEventTool"
-                               Description="deleting cpudefs.c"
-                               CommandLine="del ..\..\cpudefs.c"/>
-                       <Tool
-                               Name="VCResourceCompilerTool"
-                               PreprocessorDefinitions="NDEBUG"
-                               Culture="1033"/>
-                       <Tool
-                               Name="VCWebServiceProxyGeneratorTool"/>
+                               Name="VCBscMakeTool"
+                       />
                        <Tool
-                               Name="VCXMLDataGeneratorTool"/>
+                               Name="VCFxCopTool"
+                       />
                        <Tool
-                               Name="VCWebDeploymentTool"/>
+                               Name="VCAppVerifierTool"
+                       />
                        <Tool
-                               Name="VCManagedWrapperGeneratorTool"/>
+                               Name="VCWebDeploymentTool"
+                       />
                        <Tool
-                               Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+                               Name="VCPostBuildEventTool"
+                               Description="creating cpudefs.c"
+                               CommandLine="build68k.exe &gt;..\..\cpudefs.c &lt;..\..\table68k"
+                       />
                </Configuration>
        </Configurations>
        <References>
        <Files>
                <Filter
                        Name="Source Files"
-                       Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
+                       Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+                       >
                        <File
-                               RelativePath="..\..\build68k.c">
+                               RelativePath="..\..\build68k.c"
+                               >
                        </File>
                </Filter>
        </Files>
index 0812860cd291a018db695daa2f74eb5b3a61958b..95ab02a9ed4700f0e0a89edafe40e200fc55b49c 100755 (executable)
@@ -427,7 +427,7 @@ static void read_rawinput (void)
 }
 #endif
 
-void handle_rawinput (DWORD lParam)
+void handle_rawinput (LPARAM lParam)
 {
     UINT dwSize;
     BYTE lpb[1000];
index 2fe497ec0324cd118ec440bcfc098c8f52fa59c8..5f5bb42bd01643bcac7bb9a24a956c6e788f4389 100755 (executable)
 <?xml version="1.0" encoding="Windows-1252"?>
 <VisualStudioProject
        ProjectType="Visual C++"
-       Version="7.10"
+       Version="8,00"
        Name="genblitter"
        ProjectGUID="{765B0AF0-B8D3-4998-89AF-D6F939E1CD18}"
-       SccProjectName=""
-       SccLocalPath="">
+       SignManifests="true"
+       >
        <Platforms>
                <Platform
-                       Name="Win32"/>
+                       Name="Win32"
+               />
        </Platforms>
+       <ToolFiles>
+       </ToolFiles>
        <Configurations>
                <Configuration
                        Name="Release|Win32"
                        OutputDirectory=".\Release"
                        IntermediateDirectory=".\Release"
                        ConfigurationType="1"
+                       InheritedPropertySheets="UpgradeFromVC71.vsprops"
                        UseOfMFC="0"
-                       ATLMinimizesCRunTimeLibraryUsage="FALSE"
-                       CharacterSet="2">
+                       ATLMinimizesCRunTimeLibraryUsage="false"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                               TypeLibraryName=".\Release/genblitter_msvc.tlb"
+                       />
                        <Tool
                                Name="VCCLCompilerTool"
                                AdditionalOptions=""
                                InlineFunctionExpansion="1"
                                AdditionalIncludeDirectories="..\..\include,..\..,..\"
                                PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
-                               StringPooling="TRUE"
-                               RuntimeLibrary="4"
-                               EnableFunctionLevelLinking="TRUE"
+                               StringPooling="true"
+                               RuntimeLibrary="0"
+                               EnableFunctionLevelLinking="true"
                                PrecompiledHeaderFile=".\Release/genblitter_msvc.pch"
                                AssemblerListingLocation=".\Release/"
                                ObjectFile=".\Release/"
                                ProgramDataBaseFileName=".\Release/"
                                WarningLevel="3"
-                               SuppressStartupBanner="TRUE"
-                               CompileAs="0"/>
+                               SuppressStartupBanner="true"
+                               CompileAs="0"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="NDEBUG"
+                               Culture="1033"
+                       />
                        <Tool
-                               Name="VCCustomBuildTool"/>
+                               Name="VCPreLinkEventTool"
+                               Description="deleting blitter files"
+                               CommandLine="del ..\..\blit.h&#x0D;&#x0A;del ..\..\blitfunc.c&#x0D;&#x0A;del ..\..\blitfunc.h&#x0D;&#x0A;del ..\..\blittable.c&#x0D;&#x0A;"
+                       />
                        <Tool
                                Name="VCLinkerTool"
                                AdditionalOptions="/MACHINE:I386"
                                OutputFile="genblitter.exe"
                                LinkIncremental="1"
-                               SuppressStartupBanner="TRUE"
+                               SuppressStartupBanner="true"
                                ProgramDatabaseFile=".\Release/genblitter.pdb"
-                               SubSystem="1"/>
+                               SubSystem="1"
+                       />
                        <Tool
-                               Name="VCMIDLTool"
-                               TypeLibraryName=".\Release/genblitter_msvc.tlb"/>
+                               Name="VCALinkTool"
+                       />
                        <Tool
-                               Name="VCPostBuildEventTool"
-                               Description="generating blitter files"
-                               CommandLine="genblitter.exe i &gt;..\..\blit.h
-genblitter.exe f &gt;..\..\blitfunc.c
-genblitter.exe h &gt;..\..\blitfunc.h
-genblitter.exe t &gt;..\..\blittable.c
-"/>
+                               Name="VCManifestTool"
+                       />
                        <Tool
-                               Name="VCPreBuildEventTool"/>
+                               Name="VCXDCMakeTool"
+                       />
                        <Tool
-                               Name="VCPreLinkEventTool"
-                               Description="deleting blitter files"
-                               CommandLine="del ..\..\blit.h
-del ..\..\blitfunc.c
-del ..\..\blitfunc.h
-del ..\..\blittable.c
-"/>
+                               Name="VCBscMakeTool"
+                       />
                        <Tool
-                               Name="VCResourceCompilerTool"
-                               PreprocessorDefinitions="NDEBUG"
-                               Culture="1033"/>
-                       <Tool
-                               Name="VCWebServiceProxyGeneratorTool"/>
-                       <Tool
-                               Name="VCXMLDataGeneratorTool"/>
+                               Name="VCFxCopTool"
+                       />
                        <Tool
-                               Name="VCWebDeploymentTool"/>
+                               Name="VCAppVerifierTool"
+                       />
                        <Tool
-                               Name="VCManagedWrapperGeneratorTool"/>
+                               Name="VCWebDeploymentTool"
+                       />
                        <Tool
-                               Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+                               Name="VCPostBuildEventTool"
+                               Description="generating blitter files"
+                               CommandLine="genblitter.exe i &gt;..\..\blit.h&#x0D;&#x0A;genblitter.exe f &gt;..\..\blitfunc.c&#x0D;&#x0A;genblitter.exe h &gt;..\..\blitfunc.h&#x0D;&#x0A;genblitter.exe t &gt;..\..\blittable.c&#x0D;&#x0A;"
+                       />
                </Configuration>
                <Configuration
                        Name="Debug|Win32"
                        OutputDirectory=".\Debug"
                        IntermediateDirectory=".\Debug"
                        ConfigurationType="1"
+                       InheritedPropertySheets="UpgradeFromVC71.vsprops"
                        UseOfMFC="0"
-                       ATLMinimizesCRunTimeLibraryUsage="FALSE"
-                       CharacterSet="2">
+                       ATLMinimizesCRunTimeLibraryUsage="false"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                               TypeLibraryName=".\Debug/genblitter_msvc.tlb"
+                       />
                        <Tool
                                Name="VCCLCompilerTool"
                                AdditionalOptions=""
@@ -96,131 +139,157 @@ del ..\..\blittable.c
                                AdditionalIncludeDirectories="..\..\include,..\..,..\"
                                PreprocessorDefinitions="WIN32,_DEBUG,_CONSOLE,__STDC__"
                                BasicRuntimeChecks="3"
-                               RuntimeLibrary="5"
+                               RuntimeLibrary="1"
                                PrecompiledHeaderFile=".\Debug/genblitter_msvc.pch"
                                AssemblerListingLocation=".\Debug/"
                                ObjectFile=".\Debug/"
                                ProgramDataBaseFileName=".\Debug/"
                                WarningLevel="3"
-                               SuppressStartupBanner="TRUE"
+                               SuppressStartupBanner="true"
                                DebugInformationFormat="4"
-                               CompileAs="0"/>
+                               CompileAs="0"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="_DEBUG"
+                               Culture="1033"
+                       />
                        <Tool
-                               Name="VCCustomBuildTool"/>
+                               Name="VCPreLinkEventTool"
+                               Description="deleting blitter files"
+                               CommandLine="del ..\..\blit.h&#x0D;&#x0A;del ..\..\blitfunc.c&#x0D;&#x0A;del ..\..\blitfunc.h&#x0D;&#x0A;del ..\..\blittable.c&#x0D;&#x0A;"
+                       />
                        <Tool
                                Name="VCLinkerTool"
                                AdditionalOptions="/MACHINE:I386"
                                OutputFile="genblitter.exe"
                                LinkIncremental="2"
-                               SuppressStartupBanner="TRUE"
-                               GenerateDebugInformation="TRUE"
+                               SuppressStartupBanner="true"
+                               GenerateDebugInformation="true"
                                ProgramDatabaseFile=".\Debug/genblitter.pdb"
-                               SubSystem="1"/>
+                               SubSystem="1"
+                       />
                        <Tool
-                               Name="VCMIDLTool"
-                               TypeLibraryName=".\Debug/genblitter_msvc.tlb"/>
+                               Name="VCALinkTool"
+                       />
                        <Tool
-                               Name="VCPostBuildEventTool"
-                               Description="generating blitter files"
-                               CommandLine="genblitter.exe i &gt;..\..\blit.h
-genblitter.exe f &gt;..\..\blitfunc.c
-genblitter.exe h &gt;..\..\blitfunc.h
-genblitter.exe t &gt;..\..\blittable.c
-"/>
+                               Name="VCManifestTool"
+                       />
                        <Tool
-                               Name="VCPreBuildEventTool"/>
-                       <Tool
-                               Name="VCPreLinkEventTool"
-                               Description="deleting blitter files"
-                               CommandLine="del ..\..\blit.h
-del ..\..\blitfunc.c
-del ..\..\blitfunc.h
-del ..\..\blittable.c
-"/>
-                       <Tool
-                               Name="VCResourceCompilerTool"
-                               PreprocessorDefinitions="_DEBUG"
-                               Culture="1033"/>
+                               Name="VCXDCMakeTool"
+                       />
                        <Tool
-                               Name="VCWebServiceProxyGeneratorTool"/>
+                               Name="VCBscMakeTool"
+                       />
                        <Tool
-                               Name="VCXMLDataGeneratorTool"/>
+                               Name="VCFxCopTool"
+                       />
                        <Tool
-                               Name="VCWebDeploymentTool"/>
+                               Name="VCAppVerifierTool"
+                       />
                        <Tool
-                               Name="VCManagedWrapperGeneratorTool"/>
+                               Name="VCWebDeploymentTool"
+                       />
                        <Tool
-                               Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+                               Name="VCPostBuildEventTool"
+                               Description="generating blitter files"
+                               CommandLine="genblitter.exe i &gt;..\..\blit.h&#x0D;&#x0A;genblitter.exe f &gt;..\..\blitfunc.c&#x0D;&#x0A;genblitter.exe h &gt;..\..\blitfunc.h&#x0D;&#x0A;genblitter.exe t &gt;..\..\blittable.c&#x0D;&#x0A;"
+                       />
                </Configuration>
                <Configuration
                        Name="TestRelease|Win32"
                        OutputDirectory="$(ConfigurationName)"
                        IntermediateDirectory="$(ConfigurationName)"
                        ConfigurationType="1"
+                       InheritedPropertySheets="UpgradeFromVC71.vsprops"
                        UseOfMFC="0"
-                       ATLMinimizesCRunTimeLibraryUsage="FALSE"
-                       CharacterSet="2">
+                       ATLMinimizesCRunTimeLibraryUsage="false"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                               TypeLibraryName=".\Release/genblitter_msvc.tlb"
+                       />
                        <Tool
                                Name="VCCLCompilerTool"
                                AdditionalOptions=""
                                InlineFunctionExpansion="1"
                                AdditionalIncludeDirectories="..\..\include,..\..,..\"
                                PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
-                               StringPooling="TRUE"
-                               RuntimeLibrary="4"
-                               EnableFunctionLevelLinking="TRUE"
+                               StringPooling="true"
+                               RuntimeLibrary="0"
+                               EnableFunctionLevelLinking="true"
                                PrecompiledHeaderFile=".\Release/genblitter_msvc.pch"
                                AssemblerListingLocation=".\Release/"
                                ObjectFile=".\Release/"
                                ProgramDataBaseFileName=".\Release/"
                                WarningLevel="3"
-                               SuppressStartupBanner="TRUE"
-                               CompileAs="0"/>
+                               SuppressStartupBanner="true"
+                               CompileAs="0"
+                       />
                        <Tool
-                               Name="VCCustomBuildTool"/>
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="NDEBUG"
+                               Culture="1033"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                               Description="deleting blitter files"
+                               CommandLine="del ..\..\blit.h&#x0D;&#x0A;del ..\..\blitfunc.c&#x0D;&#x0A;del ..\..\blitfunc.h&#x0D;&#x0A;del ..\..\blittable.c&#x0D;&#x0A;"
+                       />
                        <Tool
                                Name="VCLinkerTool"
                                AdditionalOptions="/MACHINE:I386"
                                OutputFile="genblitter.exe"
                                LinkIncremental="1"
-                               SuppressStartupBanner="TRUE"
+                               SuppressStartupBanner="true"
                                ProgramDatabaseFile=".\Release/genblitter.pdb"
-                               SubSystem="1"/>
+                               SubSystem="1"
+                       />
                        <Tool
-                               Name="VCMIDLTool"
-                               TypeLibraryName=".\Release/genblitter_msvc.tlb"/>
+                               Name="VCALinkTool"
+                       />
                        <Tool
-                               Name="VCPostBuildEventTool"
-                               Description="generating blitter files"
-                               CommandLine="genblitter.exe i &gt;..\..\blit.h
-genblitter.exe f &gt;..\..\blitfunc.c
-genblitter.exe h &gt;..\..\blitfunc.h
-genblitter.exe t &gt;..\..\blittable.c
-"/>
+                               Name="VCManifestTool"
+                       />
                        <Tool
-                               Name="VCPreBuildEventTool"/>
+                               Name="VCXDCMakeTool"
+                       />
                        <Tool
-                               Name="VCPreLinkEventTool"
-                               Description="deleting blitter files"
-                               CommandLine="del ..\..\blit.h
-del ..\..\blitfunc.c
-del ..\..\blitfunc.h
-del ..\..\blittable.c
-"/>
-                       <Tool
-                               Name="VCResourceCompilerTool"
-                               PreprocessorDefinitions="NDEBUG"
-                               Culture="1033"/>
-                       <Tool
-                               Name="VCWebServiceProxyGeneratorTool"/>
+                               Name="VCBscMakeTool"
+                       />
                        <Tool
-                               Name="VCXMLDataGeneratorTool"/>
+                               Name="VCFxCopTool"
+                       />
                        <Tool
-                               Name="VCWebDeploymentTool"/>
+                               Name="VCAppVerifierTool"
+                       />
                        <Tool
-                               Name="VCManagedWrapperGeneratorTool"/>
+                               Name="VCWebDeploymentTool"
+                       />
                        <Tool
-                               Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+                               Name="VCPostBuildEventTool"
+                               Description="generating blitter files"
+                               CommandLine="genblitter.exe i &gt;..\..\blit.h&#x0D;&#x0A;genblitter.exe f &gt;..\..\blitfunc.c&#x0D;&#x0A;genblitter.exe h &gt;..\..\blitfunc.h&#x0D;&#x0A;genblitter.exe t &gt;..\..\blittable.c&#x0D;&#x0A;"
+                       />
                </Configuration>
        </Configurations>
        <References>
@@ -228,12 +297,15 @@ del ..\..\blittable.c
        <Files>
                <Filter
                        Name="Source Files"
-                       Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
+                       Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+                       >
                        <File
-                               RelativePath="..\..\blitops.c">
+                               RelativePath="..\..\blitops.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\genblitter.c">
+                               RelativePath="..\..\genblitter.c"
+                               >
                        </File>
                </Filter>
        </Files>
index d5122b9a0f6ae5c1897b28e1ccb2478e8245d21f..8e3d89e43e213d7a664d1797a63bba0cf15cb1ca 100755 (executable)
 <?xml version="1.0" encoding="Windows-1252"?>
 <VisualStudioProject
        ProjectType="Visual C++"
-       Version="7.10"
+       Version="8,00"
        Name="gencomp"
        ProjectGUID="{54197DFF-9CAA-4A9F-B9C2-2881EA04EACB}"
-       SccProjectName=""
-       SccLocalPath="">
+       SignManifests="true"
+       >
        <Platforms>
                <Platform
-                       Name="Win32"/>
+                       Name="Win32"
+               />
        </Platforms>
+       <ToolFiles>
+       </ToolFiles>
        <Configurations>
                <Configuration
                        Name="Release|Win32"
                        OutputDirectory=".\Release"
                        IntermediateDirectory=".\Release"
                        ConfigurationType="1"
+                       InheritedPropertySheets="UpgradeFromVC71.vsprops"
                        UseOfMFC="0"
-                       ATLMinimizesCRunTimeLibraryUsage="FALSE"
-                       CharacterSet="2">
+                       ATLMinimizesCRunTimeLibraryUsage="false"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                               TypeLibraryName=".\Release/gencomp_msvc.tlb"
+                       />
                        <Tool
                                Name="VCCLCompilerTool"
                                AdditionalOptions=""
                                InlineFunctionExpansion="1"
                                AdditionalIncludeDirectories="..\..\include,..\..,..\"
                                PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
-                               StringPooling="TRUE"
-                               RuntimeLibrary="4"
-                               EnableFunctionLevelLinking="TRUE"
+                               StringPooling="true"
+                               RuntimeLibrary="0"
+                               EnableFunctionLevelLinking="true"
                                PrecompiledHeaderFile=".\Release/gencomp_msvc.pch"
                                AssemblerListingLocation=".\Release/"
                                ObjectFile=".\Release/"
                                ProgramDataBaseFileName=".\Release/"
                                WarningLevel="3"
-                               SuppressStartupBanner="TRUE"
-                               CompileAs="0"/>
+                               SuppressStartupBanner="true"
+                               CompileAs="0"
+                       />
                        <Tool
-                               Name="VCCustomBuildTool"/>
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="NDEBUG"
+                               Culture="1033"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                       />
                        <Tool
                                Name="VCLinkerTool"
                                AdditionalOptions="/MACHINE:I386"
                                OutputFile="gencomp.exe"
                                LinkIncremental="1"
-                               SuppressStartupBanner="TRUE"
+                               SuppressStartupBanner="true"
                                ProgramDatabaseFile=".\Release/gencomp.pdb"
-                               SubSystem="1"/>
+                               SubSystem="1"
+                       />
                        <Tool
-                               Name="VCMIDLTool"
-                               TypeLibraryName=".\Release/gencomp_msvc.tlb"/>
+                               Name="VCALinkTool"
+                       />
                        <Tool
-                               Name="VCPostBuildEventTool"
-                               Description="generating gencomp files"
-                               CommandLine="cd ..\..
-od-win32\gencomp_msvc\gencomp.exe
-"/>
+                               Name="VCManifestTool"
+                       />
                        <Tool
-                               Name="VCPreBuildEventTool"/>
+                               Name="VCXDCMakeTool"
+                       />
                        <Tool
-                               Name="VCPreLinkEventTool"/>
+                               Name="VCBscMakeTool"
+                       />
                        <Tool
-                               Name="VCResourceCompilerTool"
-                               PreprocessorDefinitions="NDEBUG"
-                               Culture="1033"/>
+                               Name="VCFxCopTool"
+                       />
                        <Tool
-                               Name="VCWebServiceProxyGeneratorTool"/>
+                               Name="VCAppVerifierTool"
+                       />
                        <Tool
-                               Name="VCXMLDataGeneratorTool"/>
+                               Name="VCWebDeploymentTool"
+                       />
                        <Tool
-                               Name="VCWebDeploymentTool"/>
-                       <Tool
-                               Name="VCManagedWrapperGeneratorTool"/>
-                       <Tool
-                               Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+                               Name="VCPostBuildEventTool"
+                               Description="generating gencomp files"
+                               CommandLine="cd ..\..&#x0D;&#x0A;od-win32\gencomp_msvc\gencomp.exe&#x0D;&#x0A;"
+                       />
                </Configuration>
                <Configuration
                        Name="Debug|Win32"
                        OutputDirectory=".\Debug"
                        IntermediateDirectory=".\Debug"
                        ConfigurationType="1"
+                       InheritedPropertySheets="UpgradeFromVC71.vsprops"
                        UseOfMFC="0"
-                       ATLMinimizesCRunTimeLibraryUsage="FALSE"
-                       CharacterSet="2">
+                       ATLMinimizesCRunTimeLibraryUsage="false"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                               TypeLibraryName=".\Debug/gencomp_msvc.tlb"
+                       />
                        <Tool
                                Name="VCCLCompilerTool"
                                AdditionalOptions=""
@@ -88,116 +137,154 @@ od-win32\gencomp_msvc\gencomp.exe
                                AdditionalIncludeDirectories="..\..\include,..\..,..\"
                                PreprocessorDefinitions="WIN32,_DEBUG,_CONSOLE,__STDC__"
                                BasicRuntimeChecks="3"
-                               RuntimeLibrary="5"
-                               UsePrecompiledHeader="2"
+                               RuntimeLibrary="1"
+                               UsePrecompiledHeader="0"
                                PrecompiledHeaderFile=".\Debug/gencomp_msvc.pch"
                                AssemblerListingLocation=".\Debug/"
                                ObjectFile=".\Debug/"
                                ProgramDataBaseFileName=".\Debug/"
                                WarningLevel="3"
-                               SuppressStartupBanner="TRUE"
+                               SuppressStartupBanner="true"
                                DebugInformationFormat="4"
-                               CompileAs="0"/>
+                               CompileAs="0"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="_DEBUG"
+                               Culture="1033"
+                       />
                        <Tool
-                               Name="VCCustomBuildTool"/>
+                               Name="VCPreLinkEventTool"
+                       />
                        <Tool
                                Name="VCLinkerTool"
                                AdditionalOptions="/MACHINE:I386"
                                OutputFile="gencomp.exe"
                                LinkIncremental="2"
-                               SuppressStartupBanner="TRUE"
-                               GenerateDebugInformation="TRUE"
+                               SuppressStartupBanner="true"
+                               GenerateDebugInformation="true"
                                ProgramDatabaseFile=".\Debug/gencomp.pdb"
-                               SubSystem="1"/>
+                               SubSystem="1"
+                       />
                        <Tool
-                               Name="VCMIDLTool"
-                               TypeLibraryName=".\Debug/gencomp_msvc.tlb"/>
-                       <Tool
-                               Name="VCPostBuildEventTool"
-                               Description="generating gencomp files"
-                               CommandLine="cd ..\..
-od-win32\gencomp_msvc\gencomp.exe
-"/>
+                               Name="VCALinkTool"
+                       />
                        <Tool
-                               Name="VCPreBuildEventTool"/>
+                               Name="VCManifestTool"
+                       />
                        <Tool
-                               Name="VCPreLinkEventTool"/>
-                       <Tool
-                               Name="VCResourceCompilerTool"
-                               PreprocessorDefinitions="_DEBUG"
-                               Culture="1033"/>
+                               Name="VCXDCMakeTool"
+                       />
                        <Tool
-                               Name="VCWebServiceProxyGeneratorTool"/>
+                               Name="VCBscMakeTool"
+                       />
                        <Tool
-                               Name="VCXMLDataGeneratorTool"/>
+                               Name="VCFxCopTool"
+                       />
                        <Tool
-                               Name="VCWebDeploymentTool"/>
+                               Name="VCAppVerifierTool"
+                       />
                        <Tool
-                               Name="VCManagedWrapperGeneratorTool"/>
+                               Name="VCWebDeploymentTool"
+                       />
                        <Tool
-                               Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+                               Name="VCPostBuildEventTool"
+                               Description="generating gencomp files"
+                               CommandLine="cd ..\..&#x0D;&#x0A;od-win32\gencomp_msvc\gencomp.exe&#x0D;&#x0A;"
+                       />
                </Configuration>
                <Configuration
                        Name="TestRelease|Win32"
                        OutputDirectory="$(ConfigurationName)"
                        IntermediateDirectory="$(ConfigurationName)"
                        ConfigurationType="1"
+                       InheritedPropertySheets="UpgradeFromVC71.vsprops"
                        UseOfMFC="0"
-                       ATLMinimizesCRunTimeLibraryUsage="FALSE"
-                       CharacterSet="2">
+                       ATLMinimizesCRunTimeLibraryUsage="false"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                               TypeLibraryName=".\Release/gencomp_msvc.tlb"
+                       />
                        <Tool
                                Name="VCCLCompilerTool"
                                AdditionalOptions=""
                                InlineFunctionExpansion="1"
                                AdditionalIncludeDirectories="..\..\include,..\..,..\"
                                PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
-                               StringPooling="TRUE"
-                               RuntimeLibrary="4"
-                               EnableFunctionLevelLinking="TRUE"
+                               StringPooling="true"
+                               RuntimeLibrary="0"
+                               EnableFunctionLevelLinking="true"
                                PrecompiledHeaderFile=".\Release/gencomp_msvc.pch"
                                AssemblerListingLocation=".\Release/"
                                ObjectFile=".\Release/"
                                ProgramDataBaseFileName=".\Release/"
                                WarningLevel="3"
-                               SuppressStartupBanner="TRUE"
-                               CompileAs="0"/>
+                               SuppressStartupBanner="true"
+                               CompileAs="0"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
                        <Tool
-                               Name="VCCustomBuildTool"/>
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="NDEBUG"
+                               Culture="1033"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                       />
                        <Tool
                                Name="VCLinkerTool"
                                AdditionalOptions="/MACHINE:I386"
                                OutputFile="gencomp.exe"
                                LinkIncremental="1"
-                               SuppressStartupBanner="TRUE"
+                               SuppressStartupBanner="true"
                                ProgramDatabaseFile=".\Release/gencomp.pdb"
-                               SubSystem="1"/>
-                       <Tool
-                               Name="VCMIDLTool"
-                               TypeLibraryName=".\Release/gencomp_msvc.tlb"/>
+                               SubSystem="1"
+                       />
                        <Tool
-                               Name="VCPostBuildEventTool"
-                               Description="generating gencomp files"
-                               CommandLine="cd ..\..
-od-win32\gencomp_msvc\gencomp.exe
-"/>
+                               Name="VCALinkTool"
+                       />
                        <Tool
-                               Name="VCPreBuildEventTool"/>
+                               Name="VCManifestTool"
+                       />
                        <Tool
-                               Name="VCPreLinkEventTool"/>
+                               Name="VCXDCMakeTool"
+                       />
                        <Tool
-                               Name="VCResourceCompilerTool"
-                               PreprocessorDefinitions="NDEBUG"
-                               Culture="1033"/>
+                               Name="VCBscMakeTool"
+                       />
                        <Tool
-                               Name="VCWebServiceProxyGeneratorTool"/>
+                               Name="VCFxCopTool"
+                       />
                        <Tool
-                               Name="VCXMLDataGeneratorTool"/>
+                               Name="VCAppVerifierTool"
+                       />
                        <Tool
-                               Name="VCWebDeploymentTool"/>
+                               Name="VCWebDeploymentTool"
+                       />
                        <Tool
-                               Name="VCManagedWrapperGeneratorTool"/>
-                       <Tool
-                               Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+                               Name="VCPostBuildEventTool"
+                               Description="generating gencomp files"
+                               CommandLine="cd ..\..&#x0D;&#x0A;od-win32\gencomp_msvc\gencomp.exe&#x0D;&#x0A;"
+                       />
                </Configuration>
        </Configurations>
        <References>
@@ -205,21 +292,27 @@ od-win32\gencomp_msvc\gencomp.exe
        <Files>
                <Filter
                        Name="Source Files"
-                       Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
+                       Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+                       >
                        <File
-                               RelativePath="..\..\cpudefs.c">
+                               RelativePath="..\..\cpudefs.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\gencomp.c">
+                               RelativePath="..\..\gencomp.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\missing.c">
+                               RelativePath="..\..\missing.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\readcpu.c">
+                               RelativePath="..\..\readcpu.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\writelog.c">
+                               RelativePath="..\writelog.c"
+                               >
                        </File>
                </Filter>
        </Files>
index 767fab6a4d1fedc50c3543157b4cad9dd4cbdda7..2a91c685126ec5ab26a5bd1893b9fcaa08e96af6 100755 (executable)
@@ -1,24 +1,45 @@
 <?xml version="1.0" encoding="Windows-1252"?>
 <VisualStudioProject
        ProjectType="Visual C++"
-       Version="7.10"
+       Version="8,00"
        Name="gencpu"
        ProjectGUID="{DEF7ACF7-050E-4069-BB99-5B5D93F60521}"
-       SccProjectName=""
-       SccLocalPath="">
+       SignManifests="true"
+       >
        <Platforms>
                <Platform
-                       Name="Win32"/>
+                       Name="Win32"
+               />
        </Platforms>
+       <ToolFiles>
+       </ToolFiles>
        <Configurations>
                <Configuration
                        Name="Debug|Win32"
                        OutputDirectory=".\Debug"
                        IntermediateDirectory=".\Debug"
                        ConfigurationType="1"
+                       InheritedPropertySheets="UpgradeFromVC71.vsprops"
                        UseOfMFC="0"
-                       ATLMinimizesCRunTimeLibraryUsage="FALSE"
-                       CharacterSet="2">
+                       ATLMinimizesCRunTimeLibraryUsage="false"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                               TypeLibraryName=".\Debug/gencpu_msvc.tlb"
+                       />
                        <Tool
                                Name="VCCLCompilerTool"
                                AdditionalOptions=""
                                AdditionalIncludeDirectories="..\..\include,..\..,..\"
                                PreprocessorDefinitions="WIN32,_DEBUG,_CONSOLE,__STDC__"
                                BasicRuntimeChecks="3"
-                               RuntimeLibrary="5"
-                               UsePrecompiledHeader="2"
+                               RuntimeLibrary="1"
+                               UsePrecompiledHeader="0"
                                PrecompiledHeaderFile=".\Debug/gencpu_msvc.pch"
                                AssemblerListingLocation=".\Debug/"
                                ObjectFile=".\Debug/"
                                ProgramDataBaseFileName=".\Debug/"
                                WarningLevel="3"
-                               SuppressStartupBanner="TRUE"
+                               SuppressStartupBanner="true"
                                DebugInformationFormat="4"
-                               CompileAs="0"/>
+                               CompileAs="0"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="_DEBUG"
+                               Culture="1033"
+                       />
                        <Tool
-                               Name="VCCustomBuildTool"/>
+                               Name="VCPreLinkEventTool"
+                               Description="deleting gencpu files"
+                               CommandLine="del ..\..\cputbl.h;del ..\..\cpustbl.c&#x0D;&#x0A;;del ..\..\cpuemu.c&#x0D;&#x0A;"
+                       />
                        <Tool
                                Name="VCLinkerTool"
                                AdditionalOptions="/MACHINE:I386"
                                OutputFile="gencpu.exe"
                                LinkIncremental="2"
-                               SuppressStartupBanner="TRUE"
-                               GenerateDebugInformation="TRUE"
+                               SuppressStartupBanner="true"
+                               GenerateDebugInformation="true"
                                ProgramDatabaseFile=".\Debug/gencpu.pdb"
-                               SubSystem="1"/>
+                               SubSystem="1"
+                       />
                        <Tool
-                               Name="VCMIDLTool"
-                               TypeLibraryName=".\Debug/gencpu_msvc.tlb"/>
+                               Name="VCALinkTool"
+                       />
                        <Tool
-                               Name="VCPostBuildEventTool"
-                               Description="generating gencpu files"
-                               CommandLine="cd ..\..
-od-win32\gencpu_msvc\gencpu.exe
-"/>
+                               Name="VCManifestTool"
+                       />
                        <Tool
-                               Name="VCPreBuildEventTool"/>
+                               Name="VCXDCMakeTool"
+                       />
                        <Tool
-                               Name="VCPreLinkEventTool"
-                               Description="deleting gencpu files"
-                               CommandLine="del ..\..\cputbl.h;del ..\..\cpustbl.c
-;del ..\..\cpuemu.c
-"/>
+                               Name="VCBscMakeTool"
+                       />
                        <Tool
-                               Name="VCResourceCompilerTool"
-                               PreprocessorDefinitions="_DEBUG"
-                               Culture="1033"/>
-                       <Tool
-                               Name="VCWebServiceProxyGeneratorTool"/>
-                       <Tool
-                               Name="VCXMLDataGeneratorTool"/>
+                               Name="VCFxCopTool"
+                       />
                        <Tool
-                               Name="VCWebDeploymentTool"/>
+                               Name="VCAppVerifierTool"
+                       />
                        <Tool
-                               Name="VCManagedWrapperGeneratorTool"/>
+                               Name="VCWebDeploymentTool"
+                       />
                        <Tool
-                               Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+                               Name="VCPostBuildEventTool"
+                               Description="generating gencpu files"
+                               CommandLine="cd ..\..&#x0D;&#x0A;od-win32\gencpu_msvc\gencpu.exe&#x0D;&#x0A;"
+                       />
                </Configuration>
                <Configuration
                        Name="Release|Win32"
                        OutputDirectory=".\Release"
                        IntermediateDirectory=".\Release"
                        ConfigurationType="1"
+                       InheritedPropertySheets="UpgradeFromVC71.vsprops"
                        UseOfMFC="0"
-                       ATLMinimizesCRunTimeLibraryUsage="FALSE"
-                       CharacterSet="2">
+                       ATLMinimizesCRunTimeLibraryUsage="false"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                               TypeLibraryName=".\Release/gencpu_msvc.tlb"
+                       />
                        <Tool
                                Name="VCCLCompilerTool"
                                AdditionalOptions=""
                                InlineFunctionExpansion="1"
                                AdditionalIncludeDirectories="..\..\include,..\..,..\"
                                PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
-                               StringPooling="TRUE"
-                               RuntimeLibrary="4"
-                               EnableFunctionLevelLinking="TRUE"
+                               StringPooling="true"
+                               RuntimeLibrary="0"
+                               EnableFunctionLevelLinking="true"
                                PrecompiledHeaderFile=".\Release/gencpu_msvc.pch"
                                AssemblerListingLocation=".\Release/"
                                ObjectFile=".\Release/"
                                ProgramDataBaseFileName=".\Release/"
                                WarningLevel="3"
-                               SuppressStartupBanner="TRUE"
-                               CompileAs="0"/>
+                               SuppressStartupBanner="true"
+                               CompileAs="0"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="NDEBUG"
+                               Culture="1033"
+                       />
                        <Tool
-                               Name="VCCustomBuildTool"/>
+                               Name="VCPreLinkEventTool"
+                               Description="deleting gencpu files"
+                               CommandLine="del ..\..\cputbl.h&#x0D;&#x0A;del ..\..\cpustbl.c&#x0D;&#x0A;del ..\..\cpuemu.c&#x0D;&#x0A;"
+                       />
                        <Tool
                                Name="VCLinkerTool"
                                AdditionalOptions="/MACHINE:I386"
                                OutputFile="gencpu.exe"
                                LinkIncremental="1"
-                               SuppressStartupBanner="TRUE"
+                               SuppressStartupBanner="true"
                                ProgramDatabaseFile=".\Release/gencpu.pdb"
-                               SubSystem="1"/>
+                               SubSystem="1"
+                       />
                        <Tool
-                               Name="VCMIDLTool"
-                               TypeLibraryName=".\Release/gencpu_msvc.tlb"/>
+                               Name="VCALinkTool"
+                       />
                        <Tool
-                               Name="VCPostBuildEventTool"
-                               Description="generating gencpu files"
-                               CommandLine="cd ..\..
-od-win32\gencpu_msvc\gencpu.exe
-"/>
+                               Name="VCManifestTool"
+                       />
                        <Tool
-                               Name="VCPreBuildEventTool"/>
-                       <Tool
-                               Name="VCPreLinkEventTool"
-                               Description="deleting gencpu files"
-                               CommandLine="del ..\..\cputbl.h
-del ..\..\cpustbl.c
-del ..\..\cpuemu.c
-"/>
-                       <Tool
-                               Name="VCResourceCompilerTool"
-                               PreprocessorDefinitions="NDEBUG"
-                               Culture="1033"/>
+                               Name="VCXDCMakeTool"
+                       />
                        <Tool
-                               Name="VCWebServiceProxyGeneratorTool"/>
+                               Name="VCBscMakeTool"
+                       />
                        <Tool
-                               Name="VCXMLDataGeneratorTool"/>
+                               Name="VCFxCopTool"
+                       />
                        <Tool
-                               Name="VCWebDeploymentTool"/>
+                               Name="VCAppVerifierTool"
+                       />
                        <Tool
-                               Name="VCManagedWrapperGeneratorTool"/>
+                               Name="VCWebDeploymentTool"
+                       />
                        <Tool
-                               Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+                               Name="VCPostBuildEventTool"
+                               Description="generating gencpu files"
+                               CommandLine="cd ..\..&#x0D;&#x0A;od-win32\gencpu_msvc\gencpu.exe&#x0D;&#x0A;"
+                       />
                </Configuration>
                <Configuration
                        Name="TestRelease|Win32"
                        OutputDirectory="$(ConfigurationName)"
                        IntermediateDirectory="$(ConfigurationName)"
                        ConfigurationType="1"
+                       InheritedPropertySheets="UpgradeFromVC71.vsprops"
                        UseOfMFC="0"
-                       ATLMinimizesCRunTimeLibraryUsage="FALSE"
-                       CharacterSet="2">
+                       ATLMinimizesCRunTimeLibraryUsage="false"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                               TypeLibraryName=".\Release/gencpu_msvc.tlb"
+                       />
                        <Tool
                                Name="VCCLCompilerTool"
                                AdditionalOptions=""
                                InlineFunctionExpansion="1"
                                AdditionalIncludeDirectories="..\..\include,..\..,..\"
                                PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
-                               StringPooling="TRUE"
-                               RuntimeLibrary="4"
-                               EnableFunctionLevelLinking="TRUE"
+                               StringPooling="true"
+                               RuntimeLibrary="0"
+                               EnableFunctionLevelLinking="true"
                                PrecompiledHeaderFile=".\Release/gencpu_msvc.pch"
                                AssemblerListingLocation=".\Release/"
                                ObjectFile=".\Release/"
                                ProgramDataBaseFileName=".\Release/"
                                WarningLevel="3"
-                               SuppressStartupBanner="TRUE"
-                               CompileAs="0"/>
+                               SuppressStartupBanner="true"
+                               CompileAs="0"
+                       />
                        <Tool
-                               Name="VCCustomBuildTool"/>
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="NDEBUG"
+                               Culture="1033"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                               Description="deleting gencpu files"
+                               CommandLine="del ..\..\cputbl.h&#x0D;&#x0A;del ..\..\cpustbl.c&#x0D;&#x0A;del ..\..\cpuemu.c&#x0D;&#x0A;"
+                       />
                        <Tool
                                Name="VCLinkerTool"
                                AdditionalOptions="/MACHINE:I386"
                                OutputFile="gencpu.exe"
                                LinkIncremental="1"
-                               SuppressStartupBanner="TRUE"
+                               SuppressStartupBanner="true"
                                ProgramDatabaseFile=".\Release/gencpu.pdb"
-                               SubSystem="1"/>
+                               SubSystem="1"
+                       />
                        <Tool
-                               Name="VCMIDLTool"
-                               TypeLibraryName=".\Release/gencpu_msvc.tlb"/>
+                               Name="VCALinkTool"
+                       />
                        <Tool
-                               Name="VCPostBuildEventTool"
-                               Description="generating gencpu files"
-                               CommandLine="cd ..\..
-od-win32\gencpu_msvc\gencpu.exe
-"/>
+                               Name="VCManifestTool"
+                       />
                        <Tool
-                               Name="VCPreBuildEventTool"/>
+                               Name="VCXDCMakeTool"
+                       />
                        <Tool
-                               Name="VCPreLinkEventTool"
-                               Description="deleting gencpu files"
-                               CommandLine="del ..\..\cputbl.h
-del ..\..\cpustbl.c
-del ..\..\cpuemu.c
-"/>
-                       <Tool
-                               Name="VCResourceCompilerTool"
-                               PreprocessorDefinitions="NDEBUG"
-                               Culture="1033"/>
-                       <Tool
-                               Name="VCWebServiceProxyGeneratorTool"/>
+                               Name="VCBscMakeTool"
+                       />
                        <Tool
-                               Name="VCXMLDataGeneratorTool"/>
+                               Name="VCFxCopTool"
+                       />
                        <Tool
-                               Name="VCWebDeploymentTool"/>
+                               Name="VCAppVerifierTool"
+                       />
                        <Tool
-                               Name="VCManagedWrapperGeneratorTool"/>
+                               Name="VCWebDeploymentTool"
+                       />
                        <Tool
-                               Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+                               Name="VCPostBuildEventTool"
+                               Description="generating gencpu files"
+                               CommandLine="cd ..\..&#x0D;&#x0A;od-win32\gencpu_msvc\gencpu.exe&#x0D;&#x0A;"
+                       />
                </Configuration>
        </Configurations>
        <References>
@@ -219,21 +298,27 @@ del ..\..\cpuemu.c
        <Files>
                <Filter
                        Name="Source Files"
-                       Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
+                       Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+                       >
                        <File
-                               RelativePath="..\..\cpudefs.c">
+                               RelativePath="..\..\cpudefs.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\gencpu.c">
+                               RelativePath="..\..\gencpu.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\missing.c">
+                               RelativePath="..\..\missing.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\readcpu.c">
+                               RelativePath="..\..\readcpu.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\writelog.c">
+                               RelativePath="..\writelog.c"
+                               >
                        </File>
                </Filter>
        </Files>
index 05416bdb28fcc4bb648c20ba6db6ace58d71484c..bfbb7f239550eb6e5186449e33bd3e44f9ede4dd 100755 (executable)
@@ -362,6 +362,7 @@ static uae_u8 GetBytesPerPixel2(uae_u32 RGBfmt, char *file, int line)
            abort();
        }
     }
+    return 0;
 }
 
 /*
index dbd801249fc87a6cf8db8cd58575d8e9d73eb95e..1ad2ee6bbd8888874dedd89e43a3a521326f0ff1 100755 (executable)
@@ -19,4 +19,4 @@
       />
    </dependentAssembly>
 </dependency>
-</assembly>
\ No newline at end of file
+</assembly>
index d0701f8ff6c18226ee3b49ac1d2bf4fc30558631..61d792f239571f50d7b351060d0a5414a81723a0 100755 (executable)
@@ -136,8 +136,8 @@ BEGIN
     RTEXT           "Z3-Fast:",IDC_Z3TEXT,139,85,30,10,SS_CENTERIMAGE
     CONTROL         "Slider1",IDC_Z3FASTMEM,"msctls_trackbar32",
                     TBS_AUTOTICKS | TBS_TOP | WS_TABSTOP,179,80,60,20
-    RTEXT           "RTG (graphics card):",IDC_GFXCARDTEXT,96,110,76,10,
-                    SS_CENTERIMAGE
+    RTEXT           "RTG: [] Graphics card memory. Required for Picasso96 emulation.",
+                    IDC_GFXCARDTEXT,96,110,76,10,SS_NOTIFY | SS_CENTERIMAGE
     CONTROL         "Slider1",IDC_P96MEM,"msctls_trackbar32",TBS_AUTOTICKS | 
                     TBS_TOP | WS_TABSTOP,179,105,60,20
     EDITTEXT        IDC_CHIPRAM,105,59,30,12,ES_CENTER | ES_READONLY
@@ -300,6 +300,8 @@ BEGIN
                     HIDC_MAPDRIVES
     CONTROL         "Disable UAEFSDB-support",IDC_NOUAEFSDB,"Button",
                     BS_AUTOCHECKBOX | WS_TABSTOP,5,229,115,10
+    CONTROL         "Don't use Windows Recycle Bin",IDC_NORECYCLEBIN,"Button",
+                    BS_AUTOCHECKBOX | WS_TABSTOP,114,216,115,10
 END
 
 IDD_SOUND DIALOGEX 0, 0, 300, 244
@@ -327,28 +329,28 @@ BEGIN
                     TBS_AUTOTICKS | TBS_TOP | WS_TABSTOP,138,75,106,19
     EDITTEXT        IDC_SOUNDBUFFERMEM,248,78,40,12,ES_CENTER | ES_READONLY
     GROUPBOX        "Settings",IDC_SOUNDINTERPOLATION2,6,101,290,60
-    RTEXT           "Frequency:",IDC_SOUNDFREQTXT,34,110,37,8,SS_CENTERIMAGE
-    COMBOBOX        IDC_SOUNDFREQ,36,119,67,75,CBS_DROPDOWN | WS_VSCROLL | 
+    LTEXT           "Frequency",IDC_SOUNDFREQTXT,13,111,37,8,SS_CENTERIMAGE
+    COMBOBOX        IDC_SOUNDFREQ,15,120,59,75,CBS_DROPDOWN | WS_VSCROLL | 
                     WS_TABSTOP
-    RTEXT           "Audio filter:",IDC_SOUNDFILTERTXT,36,135,36,8,
+    LTEXT           "Audio filter",IDC_SOUNDFILTERTXT,227,135,34,8,
                     SS_CENTERIMAGE
-    COMBOBOX        IDC_SOUNDFILTER,36,144,67,75,CBS_DROPDOWNLIST | 
+    COMBOBOX        IDC_SOUNDFILTER,227,144,62,75,CBS_DROPDOWNLIST | 
                     WS_VSCROLL | WS_TABSTOP
-    RTEXT           "Stereo mode:",IDC_SOUNDSTEREOTXT,116,110,43,8,
+    LTEXT           "Stereo mode",IDC_SOUNDSTEREOTXT,86,111,41,8,
                     SS_CENTERIMAGE
-    COMBOBOX        IDC_SOUNDSTEREO,116,119,67,75,CBS_DROPDOWNLIST | 
+    COMBOBOX        IDC_SOUNDSTEREO,85,120,62,75,CBS_DROPDOWNLIST | 
                     WS_VSCROLL | WS_TABSTOP
-    RTEXT           "Interpolation:",IDC_SOUNDINTERPOLATIONTXT,115,135,41,8,
+    LTEXT           "Interpolation",IDC_SOUNDINTERPOLATIONTXT,227,111,41,8,
                     SS_CENTERIMAGE
-    COMBOBOX        IDC_SOUNDINTERPOLATION,116,144,67,75,CBS_DROPDOWNLIST | 
+    COMBOBOX        IDC_SOUNDINTERPOLATION,227,119,62,75,CBS_DROPDOWNLIST | 
                     WS_VSCROLL | WS_TABSTOP
-    RTEXT           "Stereo separation:",IDC_SOUNDSTEREOSEPTXT,196,110,58,8,
+    LTEXT           "Stereo separation",IDC_SOUNDSTEREOSEPTXT,155,111,56,8,
                     SS_CENTERIMAGE
-    COMBOBOX        IDC_SOUNDSTEREOSEP,197,119,67,75,CBS_DROPDOWNLIST | 
+    COMBOBOX        IDC_SOUNDSTEREOSEP,156,120,62,75,CBS_DROPDOWNLIST | 
                     WS_VSCROLL | WS_TABSTOP
-    RTEXT           "Stereo mixing delay:",IDC_SOUNDSTEREOMIXTXT,196,135,63,
-                    8,SS_CENTERIMAGE
-    COMBOBOX        IDC_SOUNDSTEREOMIX,197,144,67,75,CBS_DROPDOWNLIST | 
+    LTEXT           "Stereo mixing delay",IDC_SOUNDSTEREOMIXTXT,155,135,63,8,
+                    SS_CENTERIMAGE
+    COMBOBOX        IDC_SOUNDSTEREOMIX,156,144,62,75,CBS_DROPDOWNLIST | 
                     WS_VSCROLL | WS_TABSTOP
     GROUPBOX        "Disk Drive Sound Emulation",IDC_STATIC,6,164,290,46
     CONTROL         "",IDC_SOUNDDRIVEVOLUME,"msctls_trackbar32",
@@ -364,6 +366,10 @@ BEGIN
                     TBS_AUTOTICKS | TBS_TOP | WS_TABSTOP,14,221,107,19
     EDITTEXT        IDC_SOUNDADJUSTNUM,124,224,40,12,ES_CENTER | ES_READONLY
     PUSHBUTTON      "Calibrate",IDC_SOUNDCALIBRATE,183,223,40,14
+    COMBOBOX        IDC_SOUNDSWAP,85,144,62,75,CBS_DROPDOWNLIST | WS_VSCROLL | 
+                    WS_TABSTOP
+    LTEXT           "Swap channels",IDC_SOUNDSWAPTXT,86,135,50,8,
+                    SS_CENTERIMAGE
 END
 
 IDD_LOADSAVE DIALOGEX 0, 0, 302, 241
@@ -398,7 +404,7 @@ BEGIN
     PUSHBUTTON      "Delete",IDC_DELETE,255,225,40,15
 END
 
-IDD_PORTS DIALOGEX 0, 0, 300, 242
+IDD_PORTS DIALOGEX 0, 0, 300, 222
 STYLE DS_SETFONT | DS_3DLOOK | DS_CONTROL | WS_CHILD
 FONT 8, "MS Sans Serif", 0, 0, 0x1
 BEGIN
@@ -411,8 +417,9 @@ BEGIN
                     BS_AUTOCHECKBOX | BS_VCENTER | WS_TABSTOP,11,33,78,12
     CONTROL         "PostScript printer emulation",IDC_PSPRINTER,"Button",
                     BS_AUTOCHECKBOX | BS_VCENTER | WS_TABSTOP,93,33,100,12
-    RTEXT           "Autoflush timeout []Time in seconds after pending print job is automatically flushed.",
-                    IDC_PRINTERAUTOFLUSHTXT,202,32,57,15,SS_CENTERIMAGE
+    RTEXT           "Autoflush timeout [] Time in seconds after pending print job is automatically flushed.",
+                    IDC_PRINTERAUTOFLUSHTXT,202,32,57,15,SS_NOTIFY | 
+                    SS_CENTERIMAGE
     EDITTEXT        IDC_PRINTERAUTOFLUSH,263,33,25,12,ES_NUMBER
     RTEXT           "Ghostscript extra parameters:",IDC_STATIC,12,49,91,15,
                     SS_CENTERIMAGE
@@ -424,8 +431,9 @@ BEGIN
                     BS_VCENTER | WS_TABSTOP,132,83,48,13
     CONTROL         "RTS/CTS",IDC_SER_CTSRTS,"Button",BS_AUTOCHECKBOX | 
                     BS_VCENTER | WS_TABSTOP,185,83,53,12
-    CONTROL         "Direct",IDC_SERIAL_DIRECT,"Button",BS_AUTOCHECKBOX | 
-                    BS_VCENTER | WS_TABSTOP,243,83,46,12
+    CONTROL         "Direct []Use when emulating serial linked games on two PCs running WinUAE",
+                    IDC_SERIAL_DIRECT,"Button",BS_AUTOCHECKBOX | BS_VCENTER | 
+                    WS_TABSTOP,243,83,46,12
     GROUPBOX        "MIDI",IDC_MIDIFRAME,4,104,292,33
     RTEXT           "Out:",IDC_MIDI,10,115,34,15,SS_CENTERIMAGE
     COMBOBOX        IDC_MIDIOUTLIST,50,115,95,130,CBS_DROPDOWNLIST | 
@@ -433,43 +441,16 @@ BEGIN
     RTEXT           "In:",IDC_MIDI2,150,115,29,15,SS_CENTERIMAGE
     COMBOBOX        IDC_MIDIINLIST,185,115,95,134,CBS_DROPDOWNLIST | 
                     WS_VSCROLL | WS_TABSTOP
-    GROUPBOX        "Amiga Mouse/Joystick Port 0",IDC_PORT0,4,139,142,97
-    CONTROL         "",IDC_PORT0_JOYSC,"Button",BS_AUTORADIOBUTTON | 
-                    WS_GROUP | WS_TABSTOP,10,156,9,11
-    CONTROL         "Keyboard Layout ""A"" []Numeric keypad, 0 and 5 = fire",
-                    IDC_PORT0_KBDA,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,
-                    10,173,90,10
-    CONTROL         "Keyboard Layout ""B"" []Cursor keys, right CTRL and ALT = fire",
-                    IDC_PORT0_KBDB,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,
-                    10,186,90,10
-    CONTROL         "Keyboard Layout ""C"" []T = up, B = down, F = left, H = right, left ALT = fire",
-                    IDC_PORT0_KBDC,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,
-                    10,198,90,10
-    CONTROL         "X-Arcade (left) []#1",IDC_PORT0_KBDD,"Button",
-                    BS_AUTORADIOBUTTON | WS_TABSTOP,10,210,90,10
-    CONTROL         "X-Arcade (right) []#1",IDC_PORT0_KBDE,"Button",
-                    BS_AUTORADIOBUTTON | WS_TABSTOP,10,222,90,10
-    COMBOBOX        IDC_PORT0_JOYS,23,153,117,130,CBS_DROPDOWNLIST | 
+    GROUPBOX        "Mouse/Joystick Ports",IDC_PORT0,4,139,292,75
+    COMBOBOX        IDC_PORT0_JOYS,45,155,241,130,CBS_DROPDOWNLIST | 
                     WS_VSCROLL | WS_TABSTOP
-    GROUPBOX        "Amiga Joystick/Mouse Port 1",IDC_PORT1,150,139,146,98
-    CONTROL         "",IDC_PORT1_JOYSC,"Button",BS_AUTORADIOBUTTON | 
-                    WS_GROUP | WS_TABSTOP,155,156,9,11
-    CONTROL         "Keyboard Layout ""A"" []Numeric keypad, 0 and 5 = fire",
-                    IDC_PORT1_KBDA,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,
-                    155,173,90,10
-    CONTROL         "Keyboard Layout ""B"" []Cursor keys, right CTRL and ALT = fire",
-                    IDC_PORT1_KBDB,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,
-                    155,186,90,10
-    CONTROL         "Keyboard Layout ""C"" []T = up, B = down, F = left, H = right, left ALT = fire",
-                    IDC_PORT1_KBDC,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,
-                    155,198,90,10
-    CONTROL         "X-Arcade (left) []#1",IDC_PORT1_KBDD,"Button",
-                    BS_AUTORADIOBUTTON | WS_TABSTOP,155,210,90,10
-    CONTROL         "X-Arcade (right) []#1",IDC_PORT1_KBDE,"Button",
-                    BS_AUTORADIOBUTTON | WS_TABSTOP,155,222,90,10
-    COMBOBOX        IDC_PORT1_JOYS,168,153,123,130,CBS_DROPDOWNLIST | 
+    COMBOBOX        IDC_PORT1_JOYS,45,176,241,130,CBS_DROPDOWNLIST | 
                     WS_VSCROLL | WS_TABSTOP
-    PUSHBUTTON      "Swap",IDC_SWAP,256,213,33,14
+    PUSHBUTTON      "Swap Ports",IDC_SWAP,211,195,75,14
+    RTEXT           "Port 0:",IDC_STATIC,11,154,25,15,SS_CENTERIMAGE
+    RTEXT           "Port 1:",IDC_STATIC,11,175,25,15,SS_CENTERIMAGE
+    LTEXT           "X-Arcade layout information []#1",IDC_STATIC,16,195,106,
+                    15,SS_NOTIFY | SS_CENTERIMAGE
 END
 
 IDD_CONTRIBUTORS DIALOGEX 0, 0, 411, 242
@@ -525,31 +506,31 @@ BEGIN
                     80,15
 END
 
-IDD_MISC1 DIALOGEX 0, 0, 300, 223
+IDD_MISC1 DIALOGEX 0, 0, 300, 219
 STYLE DS_SETFONT | DS_3DLOOK | DS_CONTROL | WS_CHILD
 FONT 8, "MS Sans Serif", 0, 0, 0x1
 BEGIN
     GROUPBOX        "Advanced:",IDC_STATIC,8,4,285,103
     CONTROL         "Middle-Mouse-Button --> ALT-TAB",IDC_JULIAN,"Button",
-                    BS_AUTOCHECKBOX | WS_TABSTOP,29,21,120,10
+                    BS_AUTOCHECKBOX | WS_TABSTOP,29,19,120,10
     CONTROL         "Show GUI on startup",IDC_SHOWGUI,"Button",
-                    BS_AUTOCHECKBOX | WS_TABSTOP,29,36,120,10
+                    BS_AUTOCHECKBOX | WS_TABSTOP,29,34,120,10
     CONTROL         "On-Screen LEDs",IDC_SHOWLEDS,"Button",BS_AUTOCHECKBOX | 
-                    WS_TABSTOP,29,51,115,10
+                    WS_TABSTOP,29,49,115,10
     CONTROL         "UAEscsi.device",IDC_SCSIDEVICE,"Button",BS_AUTOCHECKBOX | 
-                    WS_TABSTOP,29,66,117,10
+                    WS_TABSTOP,29,64,117,10
     CONTROL         "Don't show Taskbar button",IDC_NOTASKBARBUTTON,"Button",
-                    BS_AUTOCHECKBOX | WS_TABSTOP,29,80,117,10
+                    BS_AUTOCHECKBOX | WS_TABSTOP,29,78,117,10
     CONTROL         "BSDsocket.library emulation",IDC_SOCKETS,"Button",
-                    BS_AUTOCHECKBOX | WS_TABSTOP,159,21,120,10
+                    BS_AUTOCHECKBOX | WS_TABSTOP,159,19,120,10
     CONTROL         "Use CTRL-F11 to quit",IDC_CTRLF11,"Button",
-                    BS_AUTOCHECKBOX | WS_TABSTOP,159,36,120,10
+                    BS_AUTOCHECKBOX | WS_TABSTOP,159,34,120,10
     CONTROL         "Don't use RGB overlays",IDC_NOOVERLAY,"Button",
-                    BS_AUTOCHECKBOX | WS_TABSTOP,159,51,120,10
+                    BS_AUTOCHECKBOX | WS_TABSTOP,159,49,120,10
     CONTROL         "Use ASPI SCSI layer",IDC_ASPI,"Button",BS_AUTOCHECKBOX | 
-                    WS_TABSTOP,159,66,115,10
+                    WS_TABSTOP,159,64,115,10
     CONTROL         "Syncronize clock",IDC_CLOCKSYNC,"Button",
-                    BS_AUTOCHECKBOX | WS_TABSTOP,159,80,115,10
+                    BS_AUTOCHECKBOX | WS_TABSTOP,159,78,115,10
     GROUPBOX        "Keyboard LEDs:",IDC_STATIC,7,110,85,73
     COMBOBOX        IDC_KBLED1,22,123,56,65,CBS_DROPDOWNLIST | WS_VSCROLL | 
                     WS_TABSTOP
@@ -563,7 +544,7 @@ BEGIN
                     HIDC_CREATELOGFILE
     CONTROL         "Illegal mem accesses",IDC_ILLEGAL,"Button",
                     BS_AUTOCHECKBOX | WS_TABSTOP,189,120,80,10
-    GROUPBOX        "State files:",IDC_STATIC,98,137,195,83
+    GROUPBOX        "State files:",IDC_STATIC,98,137,195,78
     PUSHBUTTON      "Load state...",IDC_DOLOADSTATE,105,156,49,14
     PUSHBUTTON      "Save state...",IDC_DOSAVESTATE,106,182,49,14
     CONTROL         "Enable state recording",IDC_STATE_CAPTURE,"Button",
@@ -577,7 +558,9 @@ BEGIN
     COMBOBOX        IDC_STATE_BUFFERSIZE,248,191,38,65,CBS_DROPDOWN | 
                     WS_VSCROLL | WS_TABSTOP
     CONTROL         "Always on top",IDC_ALWAYSONTOP,"Button",BS_AUTOCHECKBOX | 
-                    WS_TABSTOP,29,94,117,10
+                    WS_TABSTOP,29,92,117,10
+    CONTROL         "Catweasel",IDC_CATWEASEL,"Button",BS_AUTOCHECKBOX | 
+                    WS_TABSTOP,159,92,115,10
 END
 
 IDD_HARDFILE DIALOGEX 0, 0, 299, 212
@@ -707,7 +690,7 @@ BEGIN
                     BS_AUTORADIOBUTTON | WS_TABSTOP,39,197,95,10
 END
 
-IDD_AVIOUTPUT DIALOGEX 0, 0, 197, 210
+IDD_AVIOUTPUT DIALOGEX 0, 0, 197, 233
 STYLE DS_SETFONT | DS_CONTROL | WS_CHILD
 FONT 8, "MS Sans Serif", 0, 0, 0x1
 BEGIN
@@ -737,9 +720,11 @@ BEGIN
                     TBS_NOTICKS | TBS_ENABLESELRANGE | WS_TABSTOP,21,137,120,
                     11
     LTEXT           "fps",IDC_AVIOUTPUT_FPS_STATIC,148,138,23,8
-    PUSHBUTTON      "Save Screenshot",IDC_SCREENSHOT,15,176,95,14
-    GROUPBOX        "Ripper",IDC_STATIC,5,160,184,41
-    PUSHBUTTON      "Pro Wizard",IDC_PROWIZARD,127,176,49,14,WS_DISABLED
+    PUSHBUTTON      "Save Screenshot",IDC_SCREENSHOT,15,176,85,14
+    GROUPBOX        "Ripper",IDC_STATIC,5,160,184,63
+    PUSHBUTTON      "Pro Wizard",IDC_PROWIZARD,112,176,69,14,WS_DISABLED
+    CONTROL         "Sampleripper",IDC_SAMPLERIPPER_ACTIVATED,"Button",
+                    BS_AUTORADIOBUTTON | BS_PUSHLIKE | BS_FLAT,15,198,84,14
 END
 
 IDD_INPUT DIALOGEX 0, 0, 300, 242
@@ -873,8 +858,11 @@ FONT 8, "MS Sans Serif", 0, 0, 0x0
 BEGIN
     CONTROL         "",IDC_DISKLIST,"SysListView32",LVS_REPORT | 
                     LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_ALIGNLEFT | 
-                    LVS_NOSORTHEADER | WS_BORDER | WS_TABSTOP,4,6,292,211
-    PUSHBUTTON      "Remove disk image",IDC_DISKLISTREMOVE,98,223,93,15
+                    LVS_NOSORTHEADER | WS_BORDER | WS_TABSTOP,4,6,292,196
+    PUSHBUTTON      "Remove disk image",IDC_DISKLISTREMOVE,153,223,93,15
+    COMBOBOX        IDC_DISKTEXT,3,205,293,75,CBS_DROPDOWN | CBS_AUTOHSCROLL | 
+                    WS_VSCROLL | WS_TABSTOP
+    PUSHBUTTON      "Insert disk image",IDC_DISKLISTINSERT,38,223,93,15
 END
 
 IDD_PANEL DIALOGEX 0, 0, 420, 278
@@ -978,6 +966,17 @@ BEGIN
                     BS_AUTOCHECKBOX | BS_LEFT | WS_TABSTOP,199,222,94,10
 END
 
+IDD_FRONTEND DIALOGEX 0, 0, 420, 242
+STYLE DS_SETFONT | DS_3DLOOK | DS_CONTROL | WS_CHILD
+FONT 8, "MS Sans Serif", 0, 0, 0x1
+BEGIN
+    CONTROL         "",IDC_FE_LIST,"SysListView32",LVS_REPORT | 
+                    LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_ALIGNLEFT | 
+                    LVS_NOSORTHEADER | WS_BORDER | WS_TABSTOP,6,9,235,124
+    GROUPBOX        "",IDC_FE_INFO,249,140,160,95
+    GROUPBOX        "",IDC_FE_SCREENSHOT,249,7,160,128
+END
+
 
 #ifdef APSTUDIO_INVOKED
 /////////////////////////////////////////////////////////////////////////////
@@ -1041,8 +1040,8 @@ IDI_PATHS               ICON                    "paths.ico"
 //
 
 VS_VERSION_INFO VERSIONINFO
- FILEVERSION 0,9,92,0
- PRODUCTVERSION 0,9,92,0
+ FILEVERSION 1,0,0,0
+ PRODUCTVERSION 1,0,0,0
  FILEFLAGSMASK 0x3fL
 #ifdef _DEBUG
  FILEFLAGS 0x1L
@@ -1058,12 +1057,12 @@ BEGIN
         BLOCK "040904b0"
         BEGIN
             VALUE "FileDescription", "WinUAE"
-            VALUE "FileVersion", "0.9.92"
+            VALUE "FileVersion", "1.0.0"
             VALUE "InternalName", "WinUAE"
-            VALUE "LegalCopyright", "© 1996-2004 under the GNU Public License (GPL)"
+            VALUE "LegalCopyright", "© 1996-2005 under the GNU Public License (GPL)"
             VALUE "OriginalFilename", "WinUAE.exe"
             VALUE "ProductName", "WinUAE"
-            VALUE "ProductVersion", "0.9.92"
+            VALUE "ProductVersion", "1.0.0"
         END
     END
     BLOCK "VarFileInfo"
@@ -1119,12 +1118,6 @@ BEGIN
         BOTTOMMARGIN, 187
     END
 
-    IDD_PANEL, DIALOG
-    BEGIN
-        LEFTMARGIN, 7
-        TOPMARGIN, 7
-    END
-
     IDD_QUICKSTART, DIALOG
     BEGIN
         RIGHTMARGIN, 299
@@ -1194,6 +1187,7 @@ BEGIN
     IDS_MISC2               "Priority"
     IDS_PATHS               "Paths"
     IDS_QUICKSTART          "Quickstart"
+    IDS_FRONTEND            "Frontend"
 END
 
 STRINGTABLE 
@@ -1237,7 +1231,7 @@ BEGIN
     IDS_SELECTFILESYSROOT   "Please select your file-system root directory..."
     IDS_DEFAULTMIDIOUT      "Default MIDI-Out Device"
     IDS_CONTRIBUTORS1       "Bernd Schmidt - The Grand-Master\nSam Jordan - Custom-chip, floppy-DMA, etc.\nMathias Ortmann - Original WinUAE Main Guy, BSD Socket support\nBrian King - Picasso96 Support, Integrated GUI for WinUAE, previous WinUAE Main Guy\nToni Wilen - Core updates, WinUAE Main Guy\nGustavo Goedert/Peter Remmers/Michael Sontheimer/Tomi Hakala/Tim Gunn/Nemo Pohle - DOS Port Stuff\nSamuel Devulder/Olaf Barthel/Sam Jordan - Amiga Ports\nKrister Bergman - XFree86 and OS/2 Port\nA. Blanchard/Ernesto Corvi - MacOS Port\nChristian Bauer - BeOS Port\nIan Stephenson - NextStep Port\nPeter Teichmann - Acorn/RiscOS Port\nStefan Reinauer - ZorroII/III AutoConfig, Serial Support\nChristian Schmitt/Chris Hames - Serial Support\nHerman ten Brugge - 68020/68881 Emulation Code\nTauno Taipaleenmaki - Various UAE-Control/UAE-Library Support\nBrett Eden/Tim Gunn/Paolo Besser/Nemo Pohle - Various Docs and Web-Sites\nGeorg Veichtlbauer - Help File coordinator, German GUI\nFulvio Leonardi - Italian translator for WinUAE\n"
-    IDS_CONTRIBUTORS2       "Bill Panagouleas - Hardware support\nSpecial thanks to Alexander Kneer and Tobias Abt (The Picasso96 Team)\nSteven Weiser  - Postscript printing emulation idea and testing."
+    IDS_CONTRIBUTORS2       "Bill Panagouleas - Hardware support\nSpecial thanks to Alexander Kneer and Tobias Abt (The Picasso96 Team)\nSteven Weiser  - Postscript printing emulation idea and testing.\nPéter Tóth /Balázs Rátkai/Iván Herczeg/András Arató - Hungarian translation"
     IDS_INVALIDPRTPORT      "The printer you have in this configuration is not valid on this machine.\n"
     IDS_RESTOREUSS          "Restore a UAE Snap-Shot File"
     IDS_USS                 "UAE Snap-Shot Files"
@@ -1256,7 +1250,7 @@ BEGIN
     IDS_PATH                "Path"
     IDS_RW                  "R/W"
     IDS_SECTORS             "Sectors"
-    IDS_SURFACES            "Surfaces"
+    IDS_SURFACES            "Bill Panagouleas - Hardware support\nSpecial thanks to Alexander Kneer and Tobias Abt (The Picasso96 Team)\nSteven Weiser  - Postscript printing emulation idea and testing.\nHungarian translation - Péter Tóth , Balázs Rátkai , Iván Herczeg , András Arató"
     IDS_RESERVED            "Reserved"
     IDS_BLOCKSIZE           "Block Size"
     IDS_NAME                "Name"
@@ -1283,6 +1277,7 @@ BEGIN
     IDS_PRI_NORMAL          "Normal"
     IDS_PRI_BELOWNORMAL     "Below Normal"
     IDS_PRI_LOW             "Low"
+    IDS_OLDRTGLIBRARY       "Your LIBS:Picasso96/rtg.library (%d.%d) requires updating.\nReplace it with version from ""Amiga Programs""-directory in WinUAE archive.\nNew library fixes graphics problems and increases performance."
 END
 
 STRINGTABLE 
@@ -1371,6 +1366,13 @@ BEGIN
     IDS_SOUND_4CHANNEL      "4 Channels"
     IDS_HF_FS_CUSTOM        "Custom"
     IDS_SELECTFS            "Select filesystem handler (FastFileSystem, SmartFilesystem,...)"
+    IDS_KEYJOY              "Keyboard Layout A (Numeric keypad, 0 and 5 = fire)\nKeyboard Layout B (Cursor keys, right CTRL and ALT = fire)\nKeyboard Layout C (T=up B=down F=left H=right, left ALT = fire)\nX-Arcade (Left)\nX-Arcade (Right)"
+    IDS_STATEFILE_UNCOMPRESSED "Uncompressed"
+    IDS_STATEFILE_RAMDUMP   "RAM dump"
+    IDS_STATEFILE_WAVE      "Wave audio dump"
+    IDS_SOUND_SWAP_PAULA    "Paula only"
+    IDS_SOUND_SWAP_AHI      "AHI only"
+    IDS_SOUND_SWAP_BOTH     "Both"
 END
 
 STRINGTABLE 
@@ -1417,7 +1419,7 @@ END
 
 STRINGTABLE 
 BEGIN
-    IDS_QS_MODELS           "Amiga 500 / Amiga 2000\nAmiga 500+\nAmiga 600\nAmiga 1000\nAmiga 1200\nCD32\nCDTV (CDROM emulation not yet working)\nExpanded UAE example configuration"
+    IDS_QS_MODELS           "Amiga 500 / Amiga 2000\nAmiga 500+\nAmiga 600\nAmiga 1000\nAmiga 1200\nCD32\nCDTV (CDROM emulation not yet working)\nArcadia Multi Select system\nExpanded UAE example configuration"
     IDS_QS_MODEL_A500       "KS 1.3, OCS Agnus, 0.5M Chip + 0.5M Slow (most common)\nThis configuration is capable of running most games and demos ever produced for the first Amiga line. Only few exceptions need different configuration. Oldest Amiga games tend to be incompatible with this configuration.\nKS 1.3, ECS Agnus, 0.5M Chip + 0.5M Slow\nLater hardware revision of Amiga 500. Nearly 100% compatible with previous configuration.\nKS 1.3, ECS Agnus, 1.0M Chip\nFew newer games and demos require this configuration.\nKS 1.3, OCS Agnus, 0.5M Chip\nVery old (~1987 and older) games and demos may require this configuration.\nKS 1.2, OCS Agnus, 0.5M Chip\nThe first Amiga 500 produced had this configuration. Some very old programs only work correctly with this configuration. NOTE: This configuration cannot boot the Amiga OS installed on an emulated HD.\nKS 1.2, OCS Agnus, 0.5M Chip + 0.5M Slow\nThis configuration adds expansion memory to the first Amiga 500 ever produced. Try this if your game do not work with newer configurations but works with the previous one. It could add some features to the game and faster game loading. NOTE: This configuration cannot boot the Amiga OS installed on an emulated HD."
     IDS_QS_MODEL_A500P      "Basic non-expanded configuration\nA500+ is basically an Amiga 500 with ECS Agnus,  1MB of Chip RAM and Kickstart 2.0 ROM. Many Amiga 500 games and demos won't work properly on an Amiga 500+.\n2M Chip RAM expanded configuration\n\n4M Fast RAM expanded configuration\n"
     IDS_QS_MODEL_A600       "Basic non-expanded configuration\nA600 is basically smaller Amiga 500+ with updated Kickstart 2.0 ROM.\n2M Chip RAM expanded configuration\n\n4M Fast RAM expanded configuration\n"
@@ -1430,6 +1432,7 @@ END
 STRINGTABLE 
 BEGIN
     IDS_QS_MODEL_UAE        "High-end expanded configuration"
+    IDS_QS_MODEL_ARCADIA    "Your LIBS:Picasso96/rtg.library (%d.%d) needs updating\nReplace it with newer version from ""Amiga Programs""-directory in WinUAE archive."
 END
 
 #endif    // English (U.S.) resources
index 9d06418c8c9781916f7b51cb9476f22d166c8c0a..0136138b710d4f58773c44731ba6a9b8f83b3df6 100755 (executable)
@@ -1,5 +1,6 @@
 
 #pragma warning (disable : 4761)
+#pragma warning (disable: 4996)
 
 #define DIRECTINPUT_VERSION  0x0800
 #define DIRECT3D_VERSION 0x0900
index 8dcd7fa79d3462e5fc163840247230144eb4b9ec..14b34488dbc9674e8ea0e9c329dc81153eaca5c2 100755 (executable)
@@ -341,11 +341,11 @@ static int figure_processor_speed (void)
        limit = 2.5;
        if ((ratea2 / ratecnt) < limit * clockrate1000) { /* regular Sleep() is ok */
            timermode = 1;
-           sleep_resolution = ratea2 * clockrate1000 / (ratecnt * 1000000);
+           sleep_resolution = (int)(ratea2 * clockrate1000 / (ratecnt * 1000000));
            write_log ("Using Sleep() (resolution < %.1fms)\n", limit);
        } else if (mm_timerres && (ratea1 / ratecnt) < limit * clockrate1000) { /* MM-timer is ok */
            timermode = 0;
-           sleep_resolution = ratea1 * clockrate1000 / (ratecnt * 1000000);
+           sleep_resolution = (int)(ratea1 * clockrate1000 / (ratecnt * 1000000));
            timebegin ();
            write_log ("Using MultiMedia timers (resolution < %.1fms)\n", limit);
        } else {
@@ -371,7 +371,7 @@ static void setcursor(int oldx, int oldy)
     SetCursorPos (amigawin_rect.left + x, amigawin_rect.top + y);
 }
 
-static int activateapp;
+static WPARAM activateapp;
 
 static void checkpause (void)
 {
@@ -2182,19 +2182,66 @@ static int osdetect (void)
     return 1;
 }
 
+typedef HRESULT (CALLBACK* SHGETFOLDERPATH)(HWND,int,HANDLE,DWORD,LPTSTR);
+typedef BOOL (CALLBACK* SHGETSPECIALFOLDERPATH)(HWND,LPTSTR,int,BOOL);
+
+static void getstartpaths(int start_data)
+{
+    SHGETFOLDERPATH pSHGetFolderPath;
+    SHGETSPECIALFOLDERPATH pSHGetSpecialFolderPath;
+    char *posn, *p;
+    DWORD v;
+
+    pSHGetFolderPath = (SHGETFOLDERPATH)GetProcAddress(
+       GetModuleHandle("shell32.dll"), "SHGetFolderPathA");
+    pSHGetSpecialFolderPath = (SHGETSPECIALFOLDERPATH)GetProcAddress(
+       GetModuleHandle("shell32.dll"), "SHGetSpecialFolderPathA");
+    GetModuleFileName(NULL, start_path_exe, MAX_DPATH);
+    if((posn = strrchr (start_path_exe, '\\')))
+        posn[1] = 0;
+    p = getenv("AMIGAFOREVERDATA");
+    if (start_data == 0 && p) {
+       strcpy (start_path_data, p);
+       v = GetFileAttributes(start_path_data);
+        strcat(start_path_data, "\\WinUAE");
+       if (v != INVALID_FILE_ATTRIBUTES && (v & FILE_ATTRIBUTE_DIRECTORY))
+           start_data = 1;
+    }
+    if (start_data == 0) {
+       BOOL ok = FALSE;
+       if (pSHGetFolderPath)
+           ok = SUCCEEDED(pSHGetFolderPath(NULL, CSIDL_COMMON_DOCUMENTS, NULL, 0, start_path_data));
+       else if (pSHGetSpecialFolderPath)
+           ok = pSHGetSpecialFolderPath(NULL, start_path_data, CSIDL_COMMON_DOCUMENTS, 0);
+       if (ok) {
+           strcat(start_path_data, "\\My Amiga Files\\WinUAE");
+           v = GetFileAttributes(start_path_data);
+           if (v != INVALID_FILE_ATTRIBUTES && (v & FILE_ATTRIBUTE_DIRECTORY))
+               start_data = 1;
+       }
+    }
+    v = GetFileAttributes(start_path_data);
+    if (v == INVALID_FILE_ATTRIBUTES || !(v & FILE_ATTRIBUTE_DIRECTORY) || start_data <= 0)
+        strcpy(start_path_data, start_path_exe);
+
+    if (strlen(start_path_data) > 0 && (start_path_data[strlen(start_path_data) - 1] != '\\' && start_path_data[strlen(start_path_data) - 1] != '/'))
+       strcat(start_path_data, "\\");
+}
+
+
 extern void test (void);
 
+
+
 static int PASCAL WinMain2 (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine,
                    int nCmdShow)
 {
-    char *posn, *p;
     HANDLE hMutex;
     char **argv;
     int argc;
     int i;
     int multi_display = 1;
     int start_data = 0;
-    DWORD v;
 
 #if 1
 #ifdef __GNUC__
@@ -2260,30 +2307,7 @@ __asm{
     argv = 0;
     argv[0] = 0;
 #endif
-    GetModuleFileName(NULL, start_path_exe, MAX_DPATH);
-    if((posn = strrchr (start_path_exe, '\\')))
-        posn[1] = 0;
-    p = getenv("AMIGAFOREVERDATA");
-    if (start_data == 0 && p) {
-       strcpy (start_path_data, p);
-       v = GetFileAttributes(start_path_data);
-        strcat(start_path_data, "\\WinUAE");
-       if (v != INVALID_FILE_ATTRIBUTES && (v & FILE_ATTRIBUTE_DIRECTORY))
-           start_data = 1;
-    }
-    if (start_data == 0 && SUCCEEDED(SHGetFolderPath(NULL, CSIDL_COMMON_DOCUMENTS, NULL, 0, start_path_data))) {
-       strcat(start_path_data, "\\My Amiga Files\\WinUAE");
-       v = GetFileAttributes(start_path_data);
-       if (v != INVALID_FILE_ATTRIBUTES && (v & FILE_ATTRIBUTE_DIRECTORY))
-           start_data = 1;
-    }
-    v = GetFileAttributes(start_path_data);
-    if (v == INVALID_FILE_ATTRIBUTES || !(v & FILE_ATTRIBUTE_DIRECTORY) || start_data <= 0)
-        strcpy(start_path_data, start_path_exe);
-
-    if (strlen(start_path_data) > 0 && (start_path_data[strlen(start_path_data) - 1] != '\\' && start_path_data[strlen(start_path_data) - 1] != '/'))
-       strcat(start_path_data, "\\");
-
+    getstartpaths(start_data);
     sprintf(help_file, "%sWinUAE.chm", start_path_data);
     sprintf(VersionStr, "WinUAE %d.%d.%d%s", UAEMAJOR, UAEMINOR, UAESUBREV, WINUAEBETA ? WINUAEBETASTR : "");
     SetCurrentDirectory (start_path_data);
@@ -2594,7 +2618,7 @@ int PASCAL WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLin
                    int nCmdShow)
 {
     HANDLE thread;
-    DWORD oldaff;
+    DWORD_PTR oldaff;
 
     thread = GetCurrentThread();
     oldaff = SetThreadAffinityMask(thread, 1); 
index 0e314bf890e4d184d9af23b742bdc1c9214fbd88..0b254959024af5710c957fbcc1a45bc9d79d6b80 100755 (executable)
@@ -71,7 +71,7 @@ extern void sleep_millis_busy (int ms);
 extern void wait_keyrelease (void);
 extern void keyboard_settrans (void);
 
-extern void handle_rawinput (DWORD lParam);
+extern void handle_rawinput (LPARAM lParam);
 
 #define DEFAULT_PRIORITY 2
 struct threadpriorities {
index ea18660b9d40b520cd1918700c65a4ffbc05ebd3..6f2b05fcf040019bfb3e2b4ee273359325b1aa1d 100755 (executable)
@@ -1679,12 +1679,12 @@ static void createstatuswindow (void)
     scaleX = GetDeviceCaps (hdc, LOGPIXELSX) / 96.0;
     scaleY = GetDeviceCaps (hdc, LOGPIXELSY) / 96.0;
     ReleaseDC (hStatusWnd, hdc);
-    drive_width = 24 * scaleX;
-    hd_width = 24 * scaleX;
-    cd_width = 24 * scaleX;
-    power_width = 42 * scaleX;
-    fps_width = 64 * scaleX;
-    idle_width = 64 * scaleX;
+    drive_width = (int)(24 * scaleX);
+    hd_width = (int)(24 * scaleX);
+    cd_width = (int)(24 * scaleX);
+    power_width = (int)(42 * scaleX);
+    fps_width = (int)(64 * scaleX);
+    idle_width = (int)(64 * scaleX);
     GetClientRect (hMainWnd, &rc);
     /* Allocate an array for holding the right edge coordinates. */
     hloc = LocalAlloc (LHND, sizeof (int) * num_parts);
index 0d47b9ae8201bbd8677d7623f6436773a4b2b106..f97fc89c48fdb33494710e43dd61224ecaad9cc3 100755 (executable)
@@ -138,7 +138,7 @@ void exit_gui (int ok)
 
 static int getcbn (HWND hDlg, int v, char *out, int len)
 {
-    int val = SendDlgItemMessage (hDlg, v, CB_GETCURSEL, 0, 0L);
+    LRESULT val = SendDlgItemMessage (hDlg, v, CB_GETCURSEL, 0, 0L);
     out[0] = 0;
     if (val == CB_ERR) {
        SendDlgItemMessage (hDlg, v, WM_GETTEXT, (WPARAM)len, (LPARAM)out);
@@ -2946,12 +2946,13 @@ static BOOL CALLBACK FloppyDlgProc (HWND hDlg, UINT msg, WPARAM wParam, LPARAM l
 static BOOL CALLBACK QuickstartDlgProc (HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam)
 {
     static int recursive;
-    int val, ret = FALSE, i;
+    int ret = FALSE, i;
     char tmp[MAX_DPATH];
     static char df0[MAX_DPATH];
     static char df1[MAX_DPATH];
     static int dfxtype[2] = { -1, -1 };
     static int doinit;
+    LRESULT val;
 
     switch( msg )
     {
@@ -6544,9 +6545,10 @@ static void fixjport (int *port, int v)
 
 static void values_from_portsdlg (HWND hDlg)
 {
-    int item, i, lastside = 0, changed = 0, v;
+    int i, lastside = 0, changed = 0, v;
     char tmp[256];
     BOOL success;
+    LRESULT item;
 
     for (i = 0; i < 2; i++) {
        int idx = 0;
@@ -7511,7 +7513,7 @@ end:
 
 static void filter_handle (HWND hDlg)
 {
-    int item = SendDlgItemMessage (hDlg, IDC_FILTERMODE, CB_GETCURSEL, 0, 0L);
+    LRESULT item = SendDlgItemMessage (hDlg, IDC_FILTERMODE, CB_GETCURSEL, 0, 0L);
     if (item != CB_ERR) {
        int of = workprefs.gfx_filter;
        int off = workprefs.gfx_filter_filtermode;
@@ -8040,7 +8042,7 @@ static BOOL CALLBACK childenumproc (HWND hwnd, LPARAM lParam)
         ti.uFlags = TTF_SUBCLASS;
         ti.hwnd = GetParent (hwnd);
         ti.hinst = hInst;
-        ti.uId = (UINT)hwnd;
+        ti.uId = (UINT_PTR)hwnd;
         ti.lpszText = p;
        GetWindowRect (GetParent (hwnd), &r);
        GetWindowRect (hwnd, &ti.rect);
index 6c7b6fb90907351aafb3038662e6a69b29e39d4c..efb0829e072e21605e26893576aca4b13cff9584 100755 (executable)
 <?xml version="1.0" encoding="Windows-1252"?>
 <VisualStudioProject
        ProjectType="Visual C++"
-       Version="7.10"
+       Version="8,00"
        Name="winuae"
-       SccProjectName=""
-       SccLocalPath="">
+       ProjectGUID="{4ADAA943-1AC8-4FB5-82E5-4FB753B6C2DA}"
+       RootNamespace="winuae"
+       >
        <Platforms>
                <Platform
-                       Name="Win32"/>
+                       Name="Win32"
+               />
        </Platforms>
+       <ToolFiles>
+       </ToolFiles>
        <Configurations>
                <Configuration
                        Name="Debug|Win32"
                        OutputDirectory=".\Debug"
                        IntermediateDirectory=".\Debug"
                        ConfigurationType="1"
+                       InheritedPropertySheets="UpgradeFromVC71.vsprops"
                        UseOfMFC="0"
-                       ATLMinimizesCRunTimeLibraryUsage="FALSE"
-                       CharacterSet="2">
+                       ATLMinimizesCRunTimeLibraryUsage="false"
+                       CharacterSet="2"
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                               PreprocessorDefinitions="_DEBUG"
+                               MkTypLibCompatible="true"
+                               SuppressStartupBanner="true"
+                               TargetEnvironment="1"
+                               TypeLibraryName=".\Debug/winuae_msvc.tlb"
+                       />
                        <Tool
                                Name="VCCLCompilerTool"
                                AdditionalOptions=""
                                Optimization="0"
                                AdditionalIncludeDirectories="..\..\include,..\..,..\,..\resources,..\osdep,..\sounddep"
                                PreprocessorDefinitions="WINVER=0x0500,_DEBUG,WIN32,_WINDOWS,ZLIB_DLL,OPENGL_SUPPORT,_WIN32_IE 0x0500,UNIX"
-                               ExceptionHandling="FALSE"
+                               ExceptionHandling="0"
                                BasicRuntimeChecks="3"
                                RuntimeLibrary="1"
-                               BufferSecurityCheck="TRUE"
-                               RuntimeTypeInfo="TRUE"
+                               BufferSecurityCheck="true"
+                               RuntimeTypeInfo="true"
                                PrecompiledHeaderFile=".\Debug/winuae_msvc.pch"
                                AssemblerListingLocation=".\Debug/"
                                ObjectFile=".\Debug/"
                                ProgramDataBaseFileName=".\Debug/"
                                WarningLevel="3"
-                               SuppressStartupBanner="TRUE"
-                               Detect64BitPortabilityProblems="FALSE"
+                               SuppressStartupBanner="true"
+                               Detect64BitPortabilityProblems="true"
                                DebugInformationFormat="4"
-                               CompileAs="0"/>
+                               CompileAs="0"
+                               DisableSpecificWarnings="4996"
+                               EnablePREfast="false"
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
                        <Tool
-                               Name="VCCustomBuildTool"/>
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="_DEBUG"
+                               Culture="1033"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                       />
                        <Tool
                                Name="VCLinkerTool"
                                AdditionalOptions="/MACHINE:I386"
-                               AdditionalDependencies="opengl32.lib glu32.lib ws2_32.lib ddraw.lib dxguid.lib winmm.lib comctl32.lib version.lib vfw32.lib msacm32.lib zdll.lib dsound.lib dinput8.lib d3d9.lib d3dx9.lib winio.lib setupapi.lib wininet.lib capsimg.lib dxerr8.lib  shlwapi.lib"
+                               AdditionalDependencies="opengl32.lib glu32.lib ws2_32.lib ddraw.lib dxguid.lib winmm.lib comctl32.lib version.lib vfw32.lib msacm32.lib zdll.lib dsound.lib dinput8.lib d3d9.lib d3dx9.lib winio.lib setupapi.lib wininet.lib capsimg.lib dxerr8.lib shlwapi.lib"
                                OutputFile="d:\amiga\winuae.exe"
                                LinkIncremental="2"
-                               SuppressStartupBanner="TRUE"
+                               SuppressStartupBanner="true"
+                               GenerateManifest="false"
                                DelayLoadDLLs="setupapi.dll"
-                               GenerateDebugInformation="TRUE"
+                               GenerateDebugInformation="true"
                                ProgramDatabaseFile=".\Debug/winuae.pdb"
                                SubSystem="2"
                                StackReserveSize="2621440"
-                               StackCommitSize="2621440"/>
-                       <Tool
-                               Name="VCMIDLTool"
-                               PreprocessorDefinitions="_DEBUG"
-                               MkTypLibCompatible="TRUE"
-                               SuppressStartupBanner="TRUE"
-                               TargetEnvironment="1"
-                               TypeLibraryName=".\Debug/winuae_msvc.tlb"/>
-                       <Tool
-                               Name="VCPostBuildEventTool"/>
+                               StackCommitSize="2621440"
+                       />
                        <Tool
-                               Name="VCPreBuildEventTool"/>
+                               Name="VCALinkTool"
+                       />
                        <Tool
-                               Name="VCPreLinkEventTool"/>
+                               Name="VCManifestTool"
+                       />
                        <Tool
-                               Name="VCResourceCompilerTool"
-                               PreprocessorDefinitions="_DEBUG"
-                               Culture="1033"/>
+                               Name="VCXDCMakeTool"
+                       />
                        <Tool
-                               Name="VCWebServiceProxyGeneratorTool"/>
+                               Name="VCBscMakeTool"
+                       />
                        <Tool
-                               Name="VCXMLDataGeneratorTool"/>
+                               Name="VCFxCopTool"
+                       />
                        <Tool
-                               Name="VCWebDeploymentTool"/>
+                               Name="VCAppVerifierTool"
+                       />
                        <Tool
-                               Name="VCManagedWrapperGeneratorTool"/>
+                               Name="VCWebDeploymentTool"
+                       />
                        <Tool
-                               Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+                               Name="VCPostBuildEventTool"
+                       />
                </Configuration>
                <Configuration
                        Name="Release|Win32"
                        OutputDirectory="d:\amiga"
                        IntermediateDirectory=".\Release"
                        ConfigurationType="1"
+                       InheritedPropertySheets="UpgradeFromVC71.vsprops"
                        UseOfMFC="0"
-                       ATLMinimizesCRunTimeLibraryUsage="FALSE"
+                       ATLMinimizesCRunTimeLibraryUsage="false"
                        CharacterSet="2"
-                       WholeProgramOptimization="FALSE">
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                               PreprocessorDefinitions="NDEBUG"
+                               MkTypLibCompatible="true"
+                               SuppressStartupBanner="true"
+                               TargetEnvironment="1"
+                               TypeLibraryName=".\Release/winuae_msvc.tlb"
+                       />
                        <Tool
                                Name="VCCLCompilerTool"
                                Optimization="3"
-                               GlobalOptimizations="TRUE"
                                InlineFunctionExpansion="1"
-                               EnableIntrinsicFunctions="TRUE"
-                               ImproveFloatingPointConsistency="TRUE"
+                               EnableIntrinsicFunctions="true"
                                FavorSizeOrSpeed="1"
-                               OmitFramePointers="TRUE"
-                               OptimizeForProcessor="2"
+                               OmitFramePointers="true"
+                               WholeProgramOptimization="false"
                                AdditionalIncludeDirectories="..\..\include,..\..,..\,..\resources,..\osdep,..\sounddep"
                                PreprocessorDefinitions="WINVER=0x0500,WIN32,NDEBUG,_WINDOWS,ZLIB_DLL,_WIN32_IE 0x0500,UNIX"
-                               StringPooling="TRUE"
-                               ExceptionHandling="FALSE"
+                               StringPooling="true"
+                               ExceptionHandling="0"
+                               BasicRuntimeChecks="0"
                                RuntimeLibrary="0"
-                               BufferSecurityCheck="FALSE"
-                               EnableFunctionLevelLinking="TRUE"
+                               BufferSecurityCheck="false"
+                               EnableFunctionLevelLinking="false"
                                EnableEnhancedInstructionSet="0"
-                               TreatWChar_tAsBuiltInType="FALSE"
-                               RuntimeTypeInfo="FALSE"
+                               TreatWChar_tAsBuiltInType="false"
+                               RuntimeTypeInfo="false"
                                UsePrecompiledHeader="0"
                                PrecompiledHeaderFile=".\Release/winuae_msvc.pch"
                                AssemblerListingLocation=".\Release/"
                                ObjectFile=".\Release/"
                                ProgramDataBaseFileName=".\Release/"
                                WarningLevel="3"
-                               SuppressStartupBanner="TRUE"
+                               SuppressStartupBanner="true"
                                CompileAs="1"
-                               ForcedIncludeFiles=""/>
+                               DisableSpecificWarnings="4996"
+                               ForcedIncludeFiles=""
+                       />
                        <Tool
-                               Name="VCCustomBuildTool"/>
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="NDEBUG"
+                               Culture="1033"
+                       />
+                       <Tool
+                               Name="VCPreLinkEventTool"
+                       />
                        <Tool
                                Name="VCLinkerTool"
                                AdditionalOptions="/MACHINE:I386"
                                AdditionalDependencies="opengl32.lib glu32.lib ws2_32.lib ddraw.lib dxguid.lib winmm.lib comctl32.lib version.lib vfw32.lib msacm32.lib dsound.lib dinput8.lib d3d9.lib d3dx9.lib winio.lib setupapi.lib wininet.lib dxerr8.lib shlwapi.lib"
                                OutputFile="d:\amiga\winuae.exe"
                                LinkIncremental="1"
-                               SuppressStartupBanner="TRUE"
+                               SuppressStartupBanner="true"
                                AdditionalLibraryDirectories=""
+                               GenerateManifest="false"
                                DelayLoadDLLs="setupapi.dll"
-                               GenerateDebugInformation="TRUE"
+                               GenerateDebugInformation="true"
                                ProgramDatabaseFile=".\Release/winuae.pdb"
                                SubSystem="2"
                                StackReserveSize="2621440"
                                StackCommitSize="2621440"
                                OptimizeReferences="2"
                                EnableCOMDATFolding="2"
-                               OptimizeForWindows98="0"/>
+                               OptimizeForWindows98="0"
+                               LinkTimeCodeGeneration="0"
+                       />
                        <Tool
-                               Name="VCMIDLTool"
-                               PreprocessorDefinitions="NDEBUG"
-                               MkTypLibCompatible="TRUE"
-                               SuppressStartupBanner="TRUE"
-                               TargetEnvironment="1"
-                               TypeLibraryName=".\Release/winuae_msvc.tlb"/>
+                               Name="VCALinkTool"
+                       />
                        <Tool
-                               Name="VCPostBuildEventTool"/>
+                               Name="VCManifestTool"
+                       />
                        <Tool
-                               Name="VCPreBuildEventTool"/>
+                               Name="VCXDCMakeTool"
+                       />
                        <Tool
-                               Name="VCPreLinkEventTool"/>
+                               Name="VCBscMakeTool"
+                       />
                        <Tool
-                               Name="VCResourceCompilerTool"
-                               PreprocessorDefinitions="NDEBUG"
-                               Culture="1033"/>
-                       <Tool
-                               Name="VCWebServiceProxyGeneratorTool"/>
+                               Name="VCFxCopTool"
+                       />
                        <Tool
-                               Name="VCXMLDataGeneratorTool"/>
+                               Name="VCAppVerifierTool"
+                       />
                        <Tool
-                               Name="VCWebDeploymentTool"/>
+                               Name="VCWebDeploymentTool"
+                       />
                        <Tool
-                               Name="VCManagedWrapperGeneratorTool"/>
-                       <Tool
-                               Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+                               Name="VCPostBuildEventTool"
+                       />
                </Configuration>
                <Configuration
                        Name="TestRelease|Win32"
                        OutputDirectory="d:\amiga"
                        IntermediateDirectory="$(ConfigurationName)"
                        ConfigurationType="1"
+                       InheritedPropertySheets="UpgradeFromVC71.vsprops"
                        UseOfMFC="0"
-                       ATLMinimizesCRunTimeLibraryUsage="FALSE"
+                       ATLMinimizesCRunTimeLibraryUsage="false"
                        CharacterSet="2"
-                       WholeProgramOptimization="FALSE">
+                       >
+                       <Tool
+                               Name="VCPreBuildEventTool"
+                       />
+                       <Tool
+                               Name="VCCustomBuildTool"
+                       />
+                       <Tool
+                               Name="VCXMLDataGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCWebServiceProxyGeneratorTool"
+                       />
+                       <Tool
+                               Name="VCMIDLTool"
+                               PreprocessorDefinitions="NDEBUG"
+                               MkTypLibCompatible="true"
+                               SuppressStartupBanner="true"
+                               TargetEnvironment="1"
+                               TypeLibraryName=".\Release/winuae_msvc.tlb"
+                       />
                        <Tool
                                Name="VCCLCompilerTool"
                                AdditionalOptions="/Oy-"
                                Optimization="0"
-                               GlobalOptimizations="FALSE"
                                InlineFunctionExpansion="1"
-                               EnableIntrinsicFunctions="TRUE"
-                               ImproveFloatingPointConsistency="TRUE"
+                               EnableIntrinsicFunctions="true"
                                FavorSizeOrSpeed="0"
-                               OmitFramePointers="FALSE"
-                               OptimizeForProcessor="2"
+                               OmitFramePointers="false"
                                AdditionalIncludeDirectories="..\..\include,..\..,..\,..\resources,..\osdep,..\sounddep"
                                PreprocessorDefinitions="WINVER=0x0500,WIN32,NDEBUG,_WINDOWS,ZLIB_DLL,_WIN32_IE 0x0500,UNIX"
-                               StringPooling="TRUE"
-                               ExceptionHandling="FALSE"
+                               StringPooling="true"
+                               ExceptionHandling="0"
                                RuntimeLibrary="0"
-                               BufferSecurityCheck="FALSE"
-                               EnableFunctionLevelLinking="TRUE"
+                               BufferSecurityCheck="false"
+                               EnableFunctionLevelLinking="true"
                                EnableEnhancedInstructionSet="0"
-                               TreatWChar_tAsBuiltInType="FALSE"
-                               RuntimeTypeInfo="FALSE"
+                               TreatWChar_tAsBuiltInType="false"
+                               RuntimeTypeInfo="false"
                                UsePrecompiledHeader="0"
                                PrecompiledHeaderFile=".\Release/winuae_msvc.pch"
                                AssemblerListingLocation=".\TestRelease/"
                                ObjectFile=".\TestRelease/"
                                ProgramDataBaseFileName=".\TestRelease/"
                                WarningLevel="3"
-                               SuppressStartupBanner="TRUE"
+                               SuppressStartupBanner="true"
                                CompileAs="1"
-                               ForcedIncludeFiles=""/>
+                               ForcedIncludeFiles=""
+                       />
+                       <Tool
+                               Name="VCManagedResourceCompilerTool"
+                       />
+                       <Tool
+                               Name="VCResourceCompilerTool"
+                               PreprocessorDefinitions="NDEBUG"
+                               Culture="1033"
+                       />
                        <Tool
-                               Name="VCCustomBuildTool"/>
+                               Name="VCPreLinkEventTool"
+                       />
                        <Tool
                                Name="VCLinkerTool"
                                AdditionalOptions="/MACHINE:I386"
                                AdditionalDependencies="opengl32.lib glu32.lib ws2_32.lib ddraw.lib dxguid.lib winmm.lib comctl32.lib version.lib vfw32.lib msacm32.lib zdll.lib dsound.lib dinput8.lib d3d9.lib d3dx9.lib winio.lib setupapi.lib wininet.lib capsimg.lib dxerr8.lib shlwapi.lib"
                                OutputFile="d:\amiga\winuae.exe"
                                LinkIncremental="1"
-                               SuppressStartupBanner="TRUE"
+                               SuppressStartupBanner="true"
                                DelayLoadDLLs="setupapi.dll"
-                               GenerateDebugInformation="TRUE"
+                               GenerateDebugInformation="true"
                                ProgramDatabaseFile=".\Release/winuae.pdb"
                                SubSystem="2"
                                StackReserveSize="2621440"
                                StackCommitSize="2621440"
                                OptimizeReferences="2"
                                EnableCOMDATFolding="2"
-                               OptimizeForWindows98="0"/>
+                               OptimizeForWindows98="0"
+                       />
                        <Tool
-                               Name="VCMIDLTool"
-                               PreprocessorDefinitions="NDEBUG"
-                               MkTypLibCompatible="TRUE"
-                               SuppressStartupBanner="TRUE"
-                               TargetEnvironment="1"
-                               TypeLibraryName=".\Release/winuae_msvc.tlb"/>
-                       <Tool
-                               Name="VCPostBuildEventTool"/>
+                               Name="VCALinkTool"
+                       />
                        <Tool
-                               Name="VCPreBuildEventTool"/>
+                               Name="VCManifestTool"
+                       />
                        <Tool
-                               Name="VCPreLinkEventTool"/>
-                       <Tool
-                               Name="VCResourceCompilerTool"
-                               PreprocessorDefinitions="NDEBUG"
-                               Culture="1033"/>
+                               Name="VCXDCMakeTool"
+                       />
                        <Tool
-                               Name="VCWebServiceProxyGeneratorTool"/>
+                               Name="VCBscMakeTool"
+                       />
                        <Tool
-                               Name="VCXMLDataGeneratorTool"/>
+                               Name="VCFxCopTool"
+                       />
                        <Tool
-                               Name="VCWebDeploymentTool"/>
+                               Name="VCAppVerifierTool"
+                       />
                        <Tool
-                               Name="VCManagedWrapperGeneratorTool"/>
+                               Name="VCWebDeploymentTool"
+                       />
                        <Tool
-                               Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+                               Name="VCPostBuildEventTool"
+                       />
                </Configuration>
        </Configurations>
        <References>
        <Files>
                <Filter
                        Name="Resource Files"
-                       Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe">
+                       Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+                       >
                        <File
-                               RelativePath="..\resources\35floppy.ico">
+                               RelativePath="..\resources\35floppy.ico"
+                               >
                        </File>
                        <File
-                               RelativePath="..\resources\amigainfo.ico">
+                               RelativePath="..\resources\amigainfo.ico"
+                               >
                        </File>
                        <File
-                               RelativePath="..\resources\avioutput.ico">
+                               RelativePath="..\resources\avioutput.ico"
+                               >
                        </File>
                        <File
-                               RelativePath="..\resources\chip.ico">
+                               RelativePath="..\resources\chip.ico"
+                               >
                        </File>
                        <File
-                               RelativePath="..\resources\cpu.ico">
+                               RelativePath="..\resources\cpu.ico"
+                               >
                        </File>
                        <File
-                               RelativePath="..\resources\Drive.ico">
+                               RelativePath="..\resources\Drive.ico"
+                               >
                        </File>
                        <File
-                               RelativePath="..\resources\file.ico">
+                               RelativePath="..\resources\file.ico"
+                               >
                        </File>
                        <File
-                               RelativePath="..\resources\folder.ico">
+                               RelativePath="..\resources\folder.ico"
+                               >
                        </File>
                        <File
-                               RelativePath="..\resources\h_arrow.cur">
+                               RelativePath="..\resources\h_arrow.cur"
+                               >
                        </File>
                        <File
-                               RelativePath="..\resources\joystick.ico">
+                               RelativePath="..\resources\joystick.ico"
+                               >
                        </File>
                        <File
-                               RelativePath="..\resources\misc.ico">
+                               RelativePath="..\resources\misc.ico"
+                               >
                        </File>
                        <File
-                               RelativePath="..\resources\move_dow.ico">
+                               RelativePath="..\resources\move_dow.ico"
+                               >
                        </File>
                        <File
-                               RelativePath="..\resources\move_up.ico">
+                               RelativePath="..\resources\move_up.ico"
+                               >
                        </File>
                        <File
-                               RelativePath="..\resources\paths.ico">
+                               RelativePath="..\resources\paths.ico"
+                               >
                        </File>
                        <File
-                               RelativePath="..\resources\quickstart.ico">
+                               RelativePath="..\resources\quickstart.ico"
+                               >
                        </File>
                        <File
-                               RelativePath="..\resources\root.ico">
+                               RelativePath="..\resources\root.ico"
+                               >
                        </File>
                        <File
-                               RelativePath="..\resources\screen.ico">
+                               RelativePath="..\resources\screen.ico"
+                               >
                        </File>
                        <File
-                               RelativePath="..\resources\sound.ico">
+                               RelativePath="..\resources\sound.ico"
+                               >
                        </File>
                        <File
-                               RelativePath="..\resources\winuae.ico">
+                               RelativePath="..\resources\winuae.ico"
+                               >
                        </File>
                        <File
-                               RelativePath="..\resources\winuae.rc">
+                               RelativePath="..\resources\winuae.rc"
+                               >
                                <FileConfiguration
-                                       Name="Debug|Win32">
+                                       Name="Debug|Win32"
+                                       >
                                        <Tool
                                                Name="VCResourceCompilerTool"
-                                               AdditionalIncludeDirectories="\projects\winuae\src\od-win32\resources;$(NoInherit)"/>
+                                               AdditionalIncludeDirectories="\projects\winuae\src\od-win32\resources;$(NoInherit)"
+                                       />
                                </FileConfiguration>
                                <FileConfiguration
-                                       Name="Release|Win32">
+                                       Name="Release|Win32"
+                                       >
                                        <Tool
                                                Name="VCResourceCompilerTool"
-                                               AdditionalIncludeDirectories="\projects\winuae\src\od-win32\resources;$(NoInherit)"/>
+                                               AdditionalIncludeDirectories="\projects\winuae\src\od-win32\resources;$(NoInherit)"
+                                       />
                                </FileConfiguration>
                                <FileConfiguration
-                                       Name="TestRelease|Win32">
+                                       Name="TestRelease|Win32"
+                                       >
                                        <Tool
                                                Name="VCResourceCompilerTool"
-                                               AdditionalIncludeDirectories="\projects\winuae\src\od-win32\resources;$(NoInherit)"/>
+                                               AdditionalIncludeDirectories="\projects\winuae\src\od-win32\resources;$(NoInherit)"
+                                       />
                                </FileConfiguration>
                        </File>
                        <File
-                               RelativePath="..\resources\xarcade-winuae.bmp">
+                               RelativePath="..\resources\xarcade-winuae.bmp"
+                               >
                        </File>
                </Filter>
                <Filter
                        Name="win32"
-                       Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
+                       Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+                       >
                        <File
-                               RelativePath="..\ahidsound.c">
+                               RelativePath="..\ahidsound.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\avioutput.c">
+                               RelativePath="..\avioutput.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\blkdev_win32_aspi.c">
+                               RelativePath="..\blkdev_win32_aspi.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\blkdev_win32_ioctl.c">
+                               RelativePath="..\blkdev_win32_ioctl.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\blkdev_win32_spti.c">
+                               RelativePath="..\blkdev_win32_spti.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\bsdsock.c">
+                               RelativePath="..\bsdsock.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\caps\caps_win32.c">
+                               RelativePath="..\caps\caps_win32.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\dinput.c">
+                               RelativePath="..\dinput.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\direct3d.c">
+                               RelativePath="..\direct3d.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\dxwrap.c">
+                               RelativePath="..\dxwrap.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\fsdb_win32.c">
+                               RelativePath="..\fsdb_win32.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\hardfile_win32.c">
+                               RelativePath="..\hardfile_win32.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\ioport.c">
+                               RelativePath="..\ioport.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\keyboard_win32.c">
+                               RelativePath="..\keyboard_win32.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\midi.c">
+                               RelativePath="..\midi.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\mman.c">
+                               RelativePath="..\mman.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\opengl.c">
+                               RelativePath="..\opengl.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\parser.c">
+                               RelativePath="..\parser.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\picasso96_win.c">
+                               RelativePath="..\picasso96_win.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\posixemu.c">
+                               RelativePath="..\posixemu.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\scaler.c">
+                               RelativePath="..\scaler.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\screenshot.c">
+                               RelativePath="..\screenshot.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\serial_win32.c">
+                               RelativePath="..\serial_win32.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\sounddep\sound.c">
+                               RelativePath="..\sounddep\sound.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\support.c">
+                               RelativePath="..\support.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\win32.c">
+                               RelativePath="..\win32.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\win32_scale2x.c">
+                               RelativePath="..\win32_scale2x.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\win32gfx.c">
+                               RelativePath="..\win32gfx.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\win32gui.c">
+                               RelativePath="..\win32gui.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\writelog.c">
+                               RelativePath="..\writelog.c"
+                               >
                        </File>
                </Filter>
                <Filter
                        Name="common"
-                       Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
+                       Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+                       >
                        <File
-                               RelativePath="..\..\akiko.c">
+                               RelativePath="..\..\akiko.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\ar.c">
+                               RelativePath="..\..\ar.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\arcadia.c">
+                               RelativePath="..\..\arcadia.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\audio.c">
+                               RelativePath="..\..\audio.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\autoconf.c">
+                               RelativePath="..\..\autoconf.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\blitfunc.c">
+                               RelativePath="..\..\blitfunc.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\blittable.c">
+                               RelativePath="..\..\blittable.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\blitter.c">
+                               RelativePath="..\..\blitter.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\blkdev.c">
+                               RelativePath="..\..\blkdev.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\bsdsocket.c">
+                               RelativePath="..\..\bsdsocket.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\catweasel.c">
+                               RelativePath="..\..\catweasel.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\cdrom.c">
+                               RelativePath="..\..\cdrom.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\cdtv.c">
+                               RelativePath="..\..\cdtv.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\cfgfile.c">
+                               RelativePath="..\..\cfgfile.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\cia.c">
+                               RelativePath="..\..\cia.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\cpudefs.c">
+                               RelativePath="..\..\cpudefs.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\cpuemu_0.c">
+                               RelativePath="..\..\cpuemu_0.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\cpuemu_5.c">
+                               RelativePath="..\..\cpuemu_5.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\cpuemu_6.c">
+                               RelativePath="..\..\cpuemu_6.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\cpustbl.c">
+                               RelativePath="..\..\cpustbl.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\crc32.c">
+                               RelativePath="..\..\crc32.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\custom.c">
+                               RelativePath="..\..\custom.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\debug.c">
+                               RelativePath="..\..\debug.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\disk.c">
+                               RelativePath="..\..\disk.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\drawing.c">
+                               RelativePath="..\..\drawing.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\driveclick.c">
+                               RelativePath="..\..\driveclick.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\enforcer.c">
+                               RelativePath="..\..\enforcer.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\ersatz.c">
+                               RelativePath="..\..\ersatz.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\expansion.c">
+                               RelativePath="..\..\expansion.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\fdi2raw.c">
+                               RelativePath="..\..\fdi2raw.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\filesys.c">
+                               RelativePath="..\..\filesys.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\fpp.c">
+                               RelativePath="..\..\fpp.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\fsdb.c">
+                               RelativePath="..\..\fsdb.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\fsusage.c">
+                               RelativePath="..\..\fsusage.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\gfxlib.c">
+                               RelativePath="..\..\gfxlib.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\gfxutil.c">
+                               RelativePath="..\..\gfxutil.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\hardfile.c">
+                               RelativePath="..\..\hardfile.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\identify.c">
+                               RelativePath="..\..\identify.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\inputdevice.c">
+                               RelativePath="..\..\inputdevice.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\keybuf.c">
+                               RelativePath="..\..\keybuf.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\main.c">
+                               RelativePath="..\..\main.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\memory.c">
+                               RelativePath="..\..\memory.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\missing.c">
+                               RelativePath="..\..\missing.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\moduleripper.c">
+                               RelativePath="..\..\moduleripper.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\native2amiga.c">
+                               RelativePath="..\..\native2amiga.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\newcpu.c">
+                               RelativePath="..\..\newcpu.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\readcpu.c">
+                               RelativePath="..\..\readcpu.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\savestate.c">
+                               RelativePath="..\..\savestate.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\scsiemul.c">
+                               RelativePath="..\..\scsiemul.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\uaeexe.c">
+                               RelativePath="..\..\uaeexe.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\uaelib.c">
+                               RelativePath="..\..\uaelib.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\unzip.c">
+                               RelativePath="..\..\unzip.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\zfile.c">
+                               RelativePath="..\..\zfile.c"
+                               >
                        </File>
                </Filter>
                <Filter
                        Name="jit"
-                       Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
+                       Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+                       >
                        <File
-                               RelativePath="..\..\compemu.c">
+                               RelativePath="..\..\compemu.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\compemu_fpp.c">
+                               RelativePath="..\..\compemu_fpp.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\compemu_support.c">
+                               RelativePath="..\..\compemu_support.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\compstbl.c">
+                               RelativePath="..\..\compstbl.c"
+                               >
                        </File>
                </Filter>
                <Filter
                        Name="dms"
-                       Filter="">
+                       >
                        <File
-                               RelativePath="..\..\dms\cdata.h">
+                               RelativePath="..\..\dms\cdata.h"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\dms\crc_csum.c">
+                               RelativePath="..\..\dms\crc_csum.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\dms\getbits.c">
+                               RelativePath="..\..\dms\getbits.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\dms\maketbl.c">
+                               RelativePath="..\..\dms\maketbl.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\dms\pfile.c">
+                               RelativePath="..\..\dms\pfile.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\dms\tables.c">
+                               RelativePath="..\..\dms\tables.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\dms\u_deep.c">
+                               RelativePath="..\..\dms\u_deep.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\dms\u_heavy.c">
+                               RelativePath="..\..\dms\u_heavy.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\dms\u_init.c">
+                               RelativePath="..\..\dms\u_init.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\dms\u_medium.c">
+                               RelativePath="..\..\dms\u_medium.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\dms\u_quick.c">
+                               RelativePath="..\..\dms\u_quick.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\dms\u_rle.c">
+                               RelativePath="..\..\dms\u_rle.c"
+                               >
                        </File>
                </Filter>
                <Filter
                        Name="prowizard"
-                       Filter="">
+                       >
                        <File
-                               RelativePath="..\..\prowizard\misc\misc.c">
+                               RelativePath="..\..\prowizard\misc\misc.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\prowizard\prowiz.c">
+                               RelativePath="..\..\prowizard\prowiz.c"
+                               >
                        </File>
                        <File
-                               RelativePath="..\..\prowizard\misc\testbag.c">
+                               RelativePath="..\..\prowizard\misc\testbag.c"
+                               >
                        </File>
                        <Filter
                                Name="rips"
-                               Filter="">
+                               >
                                <File
-                                       RelativePath="..\..\prowizard\rips\ac1d.c">
+                                       RelativePath="..\..\prowizard\rips\ac1d.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\ambk.c">
+                                       RelativePath="..\..\prowizard\rips\ambk.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\bp.c">
+                                       RelativePath="..\..\prowizard\rips\bp.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\bsifc.c">
+                                       RelativePath="..\..\prowizard\rips\bsifc.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\bytek30.c">
+                                       RelativePath="..\..\prowizard\rips\bytek30.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\bytekil.c">
+                                       RelativePath="..\..\prowizard\rips\bytekil.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\bytekp10.c">
+                                       RelativePath="..\..\prowizard\rips\bytekp10.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\crmaddr.c">
+                                       RelativePath="..\..\prowizard\rips\crmaddr.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\dblatn.c">
+                                       RelativePath="..\..\prowizard\rips\dblatn.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\defjam32.c">
+                                       RelativePath="..\..\prowizard\rips\defjam32.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\di.c">
+                                       RelativePath="..\..\prowizard\rips\di.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\digibst.c">
+                                       RelativePath="..\..\prowizard\rips\digibst.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\eureka.c">
+                                       RelativePath="..\..\prowizard\rips\eureka.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\fc13.c">
+                                       RelativePath="..\..\prowizard\rips\fc13.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\fc14.c">
+                                       RelativePath="..\..\prowizard\rips\fc14.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\fc_m.c">
+                                       RelativePath="..\..\prowizard\rips\fc_m.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\fuchs.c">
+                                       RelativePath="..\..\prowizard\rips\fuchs.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\fuzzac.c">
+                                       RelativePath="..\..\prowizard\rips\fuzzac.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\gmc.c">
+                                       RelativePath="..\..\prowizard\rips\gmc.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\gnpl.c">
+                                       RelativePath="..\..\prowizard\rips\gnpl.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\gpmo.c">
+                                       RelativePath="..\..\prowizard\rips\gpmo.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\heatseek.c">
+                                       RelativePath="..\..\prowizard\rips\heatseek.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\hqc2.c">
+                                       RelativePath="..\..\prowizard\rips\hqc2.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\hrt.c">
+                                       RelativePath="..\..\prowizard\rips\hrt.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\jamcrack.c">
+                                       RelativePath="..\..\prowizard\rips\jamcrack.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\kris.c">
+                                       RelativePath="..\..\prowizard\rips\kris.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\ksm.c">
+                                       RelativePath="..\..\prowizard\rips\ksm.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\maxpac12.c">
+                                       RelativePath="..\..\prowizard\rips\maxpac12.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\mc30addr.c">
+                                       RelativePath="..\..\prowizard\rips\mc30addr.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\mcobj.c">
+                                       RelativePath="..\..\prowizard\rips\mcobj.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\mcrun.c">
+                                       RelativePath="..\..\prowizard\rips\mcrun.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\med.c">
+                                       RelativePath="..\..\prowizard\rips\med.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\mp.c">
+                                       RelativePath="..\..\prowizard\rips\mp.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\newtron.c">
+                                       RelativePath="..\..\prowizard\rips\newtron.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\nfh.c">
+                                       RelativePath="..\..\prowizard\rips\nfh.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\noiserun.c">
+                                       RelativePath="..\..\prowizard\rips\noiserun.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\npd1.c">
+                                       RelativePath="..\..\prowizard\rips\npd1.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\npd2.c">
+                                       RelativePath="..\..\prowizard\rips\npd2.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\npd3.c">
+                                       RelativePath="..\..\prowizard\rips\npd3.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\p22a.c">
+                                       RelativePath="..\..\prowizard\rips\p22a.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\p30a.c">
+                                       RelativePath="..\..\prowizard\rips\p30a.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\p40a.c">
+                                       RelativePath="..\..\prowizard\rips\p40a.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\p40b.c">
+                                       RelativePath="..\..\prowizard\rips\p40b.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\p41a.c">
+                                       RelativePath="..\..\prowizard\rips\p41a.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\p50a.c">
+                                       RelativePath="..\..\prowizard\rips\p50a.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\p60a.c">
+                                       RelativePath="..\..\prowizard\rips\p60a.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\p61a.c">
+                                       RelativePath="..\..\prowizard\rips\p61a.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\pha.c">
+                                       RelativePath="..\..\prowizard\rips\pha.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\pm.c">
+                                       RelativePath="..\..\prowizard\rips\pm.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\pm01.c">
+                                       RelativePath="..\..\prowizard\rips\pm01.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\pm10c.c">
+                                       RelativePath="..\..\prowizard\rips\pm10c.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\pm18a.c">
+                                       RelativePath="..\..\prowizard\rips\pm18a.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\pm20.c">
+                                       RelativePath="..\..\prowizard\rips\pm20.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\pm40.c">
+                                       RelativePath="..\..\prowizard\rips\pm40.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\polka.c">
+                                       RelativePath="..\..\prowizard\rips\polka.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\powerp23.c">
+                                       RelativePath="..\..\prowizard\rips\powerp23.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\powerp30.c">
+                                       RelativePath="..\..\prowizard\rips\powerp30.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\powerp40.c">
+                                       RelativePath="..\..\prowizard\rips\powerp40.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\powerp4l.c">
+                                       RelativePath="..\..\prowizard\rips\powerp4l.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\pp10.c">
+                                       RelativePath="..\..\prowizard\rips\pp10.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\pp21.c">
+                                       RelativePath="..\..\prowizard\rips\pp21.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\pp30.c">
+                                       RelativePath="..\..\prowizard\rips\pp30.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\ppbk.c">
+                                       RelativePath="..\..\prowizard\rips\ppbk.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\prun1.c">
+                                       RelativePath="..\..\prowizard\rips\prun1.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\prun2.c">
+                                       RelativePath="..\..\prowizard\rips\prun2.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\ptk.c">
+                                       RelativePath="..\..\prowizard\rips\ptk.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\qc.c">
+                                       RelativePath="..\..\prowizard\rips\qc.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\relokit.c">
+                                       RelativePath="..\..\prowizard\rips\relokit.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\skyt.c">
+                                       RelativePath="..\..\prowizard\rips\skyt.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\soundfx.c">
+                                       RelativePath="..\..\prowizard\rips\soundfx.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\soundtk.c">
+                                       RelativePath="..\..\prowizard\rips\soundtk.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\spike.c">
+                                       RelativePath="..\..\prowizard\rips\spike.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\starpack.c">
+                                       RelativePath="..\..\prowizard\rips\starpack.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\startrek.c">
+                                       RelativePath="..\..\prowizard\rips\startrek.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\stc270.c">
+                                       RelativePath="..\..\prowizard\rips\stc270.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\stc299.c">
+                                       RelativePath="..\..\prowizard\rips\stc299.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\stc299b.c">
+                                       RelativePath="..\..\prowizard\rips\stc299b.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\stc299d.c">
+                                       RelativePath="..\..\prowizard\rips\stc299d.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\stc300.c">
+                                       RelativePath="..\..\prowizard\rips\stc300.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\stc310.c">
+                                       RelativePath="..\..\prowizard\rips\stc310.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\stim.c">
+                                       RelativePath="..\..\prowizard\rips\stim.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\stk26.c">
+                                       RelativePath="..\..\prowizard\rips\stk26.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\superc27.c">
+                                       RelativePath="..\..\prowizard\rips\superc27.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\syncro.c">
+                                       RelativePath="..\..\prowizard\rips\syncro.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\tdd.c">
+                                       RelativePath="..\..\prowizard\rips\tdd.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\time17.c">
+                                       RelativePath="..\..\prowizard\rips\time17.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\tnmc11.c">
+                                       RelativePath="..\..\prowizard\rips\tnmc11.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\tp1.c">
+                                       RelativePath="..\..\prowizard\rips\tp1.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\tp2.c">
+                                       RelativePath="..\..\prowizard\rips\tp2.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\tp3.c">
+                                       RelativePath="..\..\prowizard\rips\tp3.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\tpack102.c">
+                                       RelativePath="..\..\prowizard\rips\tpack102.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\tpack21.c">
+                                       RelativePath="..\..\prowizard\rips\tpack21.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\tpack22.c">
+                                       RelativePath="..\..\prowizard\rips\tpack22.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\tryit101.c">
+                                       RelativePath="..\..\prowizard\rips\tryit101.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\turbosqueezer61.c">
+                                       RelativePath="..\..\prowizard\rips\turbosqueezer61.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\unic.c">
+                                       RelativePath="..\..\prowizard\rips\unic.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\unic2.c">
+                                       RelativePath="..\..\prowizard\rips\unic2.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\wn.c">
+                                       RelativePath="..\..\prowizard\rips\wn.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\xann.c">
+                                       RelativePath="..\..\prowizard\rips\xann.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\xm.c">
+                                       RelativePath="..\..\prowizard\rips\xm.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\rips\zen.c">
+                                       RelativePath="..\..\prowizard\rips\zen.c"
+                                       >
                                </File>
                        </Filter>
                        <Filter
                                Name="tests"
-                               Filter="">
+                               >
                                <File
-                                       RelativePath="..\..\prowizard\tests\ac1d.c">
+                                       RelativePath="..\..\prowizard\tests\ac1d.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\ambk.c">
+                                       RelativePath="..\..\prowizard\tests\ambk.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\arcd.c">
+                                       RelativePath="..\..\prowizard\tests\arcd.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\bp.c">
+                                       RelativePath="..\..\prowizard\tests\bp.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\bsifc.c">
+                                       RelativePath="..\..\prowizard\tests\bsifc.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\bytek13.c">
+                                       RelativePath="..\..\prowizard\tests\bytek13.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\bytek20.c">
+                                       RelativePath="..\..\prowizard\tests\bytek20.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\bytek30.c">
+                                       RelativePath="..\..\prowizard\tests\bytek30.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\bytekp10.c">
+                                       RelativePath="..\..\prowizard\tests\bytekp10.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\crmaddr.c">
+                                       RelativePath="..\..\prowizard\tests\crmaddr.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\crnd.c">
+                                       RelativePath="..\..\prowizard\tests\crnd.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\dblatn.c">
+                                       RelativePath="..\..\prowizard\tests\dblatn.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\defja32p.c">
+                                       RelativePath="..\..\prowizard\tests\defja32p.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\defjam32.c">
+                                       RelativePath="..\..\prowizard\tests\defjam32.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\di.c">
+                                       RelativePath="..\..\prowizard\tests\di.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\digibst.c">
+                                       RelativePath="..\..\prowizard\tests\digibst.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\eureka.c">
+                                       RelativePath="..\..\prowizard\tests\eureka.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\fc13.c">
+                                       RelativePath="..\..\prowizard\tests\fc13.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\fc14.c">
+                                       RelativePath="..\..\prowizard\tests\fc14.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\fc_m.c">
+                                       RelativePath="..\..\prowizard\tests\fc_m.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\fuchs.c">
+                                       RelativePath="..\..\prowizard\tests\fuchs.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\fuzzac.c">
+                                       RelativePath="..\..\prowizard\tests\fuzzac.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\gmc.c">
+                                       RelativePath="..\..\prowizard\tests\gmc.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\gnpl.c">
+                                       RelativePath="..\..\prowizard\tests\gnpl.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\gpmo.c">
+                                       RelativePath="..\..\prowizard\tests\gpmo.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\heatseek.c">
+                                       RelativePath="..\..\prowizard\tests\heatseek.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\hqc2.c">
+                                       RelativePath="..\..\prowizard\tests\hqc2.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\hrt.c">
+                                       RelativePath="..\..\prowizard\tests\hrt.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\jamcrack.c">
+                                       RelativePath="..\..\prowizard\tests\jamcrack.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\kris.c">
+                                       RelativePath="..\..\prowizard\tests\kris.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\ksm.c">
+                                       RelativePath="..\..\prowizard\tests\ksm.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\maxpac12.c">
+                                       RelativePath="..\..\prowizard\tests\maxpac12.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\mc30addr.c">
+                                       RelativePath="..\..\prowizard\tests\mc30addr.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\mcobj.c">
+                                       RelativePath="..\..\prowizard\tests\mcobj.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\mcrun10.c">
+                                       RelativePath="..\..\prowizard\tests\mcrun10.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\mcrun12.c">
+                                       RelativePath="..\..\prowizard\tests\mcrun12.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\mmd0.c">
+                                       RelativePath="..\..\prowizard\tests\mmd0.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\mp.c">
+                                       RelativePath="..\..\prowizard\tests\mp.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\newtron.c">
+                                       RelativePath="..\..\prowizard\tests\newtron.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\nfh.c">
+                                       RelativePath="..\..\prowizard\tests\nfh.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\noiserun.c">
+                                       RelativePath="..\..\prowizard\tests\noiserun.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\npd1.c">
+                                       RelativePath="..\..\prowizard\tests\npd1.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\npd2.c">
+                                       RelativePath="..\..\prowizard\tests\npd2.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\npd3.c">
+                                       RelativePath="..\..\prowizard\tests\npd3.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\p40a.c">
+                                       RelativePath="..\..\prowizard\tests\p40a.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\p41a.c">
+                                       RelativePath="..\..\prowizard\tests\p41a.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\p50a.c">
+                                       RelativePath="..\..\prowizard\tests\p50a.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\p60a.c">
+                                       RelativePath="..\..\prowizard\tests\p60a.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\p61a.c">
+                                       RelativePath="..\..\prowizard\tests\p61a.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\pha.c">
+                                       RelativePath="..\..\prowizard\tests\pha.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\pm.c">
+                                       RelativePath="..\..\prowizard\tests\pm.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\pm01.c">
+                                       RelativePath="..\..\prowizard\tests\pm01.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\pm10c.c">
+                                       RelativePath="..\..\prowizard\tests\pm10c.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\pm20.c">
+                                       RelativePath="..\..\prowizard\tests\pm20.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\pm40.c">
+                                       RelativePath="..\..\prowizard\tests\pm40.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\pmz.c">
+                                       RelativePath="..\..\prowizard\tests\pmz.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\polka.c">
+                                       RelativePath="..\..\prowizard\tests\polka.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\powerp23.c">
+                                       RelativePath="..\..\prowizard\tests\powerp23.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\powerp30.c">
+                                       RelativePath="..\..\prowizard\tests\powerp30.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\powerp40.c">
+                                       RelativePath="..\..\prowizard\tests\powerp40.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\powerp4l.c">
+                                       RelativePath="..\..\prowizard\tests\powerp4l.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\pp10.c">
+                                       RelativePath="..\..\prowizard\tests\pp10.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\pp21.c">
+                                       RelativePath="..\..\prowizard\tests\pp21.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\pp30.c">
+                                       RelativePath="..\..\prowizard\tests\pp30.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\ppbk.c">
+                                       RelativePath="..\..\prowizard\tests\ppbk.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\prun1.c">
+                                       RelativePath="..\..\prowizard\tests\prun1.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\prun2.c">
+                                       RelativePath="..\..\prowizard\tests\prun2.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\ptk.c">
+                                       RelativePath="..\..\prowizard\tests\ptk.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\qc.c">
+                                       RelativePath="..\..\prowizard\tests\qc.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\relokit.c">
+                                       RelativePath="..\..\prowizard\tests\relokit.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\skyt.c">
+                                       RelativePath="..\..\prowizard\tests\skyt.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\soundfx.c">
+                                       RelativePath="..\..\prowizard\tests\soundfx.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\soundtk.c">
+                                       RelativePath="..\..\prowizard\tests\soundtk.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\spike.c">
+                                       RelativePath="..\..\prowizard\tests\spike.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\starpack.c">
+                                       RelativePath="..\..\prowizard\tests\starpack.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\stc270.c">
+                                       RelativePath="..\..\prowizard\tests\stc270.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\stc299.c">
+                                       RelativePath="..\..\prowizard\tests\stc299.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\stc299b.c">
+                                       RelativePath="..\..\prowizard\tests\stc299b.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\stc299d.c">
+                                       RelativePath="..\..\prowizard\tests\stc299d.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\stc300.c">
+                                       RelativePath="..\..\prowizard\tests\stc300.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\stc310.c">
+                                       RelativePath="..\..\prowizard\tests\stc310.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\stim.c">
+                                       RelativePath="..\..\prowizard\tests\stim.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\stk26.c">
+                                       RelativePath="..\..\prowizard\tests\stk26.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\superc27.c">
+                                       RelativePath="..\..\prowizard\tests\superc27.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\syncro.c">
+                                       RelativePath="..\..\prowizard\tests\syncro.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\tdd.c">
+                                       RelativePath="..\..\prowizard\tests\tdd.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\time17.c">
+                                       RelativePath="..\..\prowizard\tests\time17.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\tnmc11.c">
+                                       RelativePath="..\..\prowizard\tests\tnmc11.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\tp1.c">
+                                       RelativePath="..\..\prowizard\tests\tp1.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\tp2.c">
+                                       RelativePath="..\..\prowizard\tests\tp2.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\tp3.c">
+                                       RelativePath="..\..\prowizard\tests\tp3.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\tpack102.c">
+                                       RelativePath="..\..\prowizard\tests\tpack102.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\tpack21.c">
+                                       RelativePath="..\..\prowizard\tests\tpack21.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\tpack22.c">
+                                       RelativePath="..\..\prowizard\tests\tpack22.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\tryit101.c">
+                                       RelativePath="..\..\prowizard\tests\tryit101.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\turbosqueezer61.c">
+                                       RelativePath="..\..\prowizard\tests\turbosqueezer61.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\unic.c">
+                                       RelativePath="..\..\prowizard\tests\unic.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\unic2.c">
+                                       RelativePath="..\..\prowizard\tests\unic2.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\wn.c">
+                                       RelativePath="..\..\prowizard\tests\wn.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\xann.c">
+                                       RelativePath="..\..\prowizard\tests\xann.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\xm.c">
+                                       RelativePath="..\..\prowizard\tests\xm.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\tests\zen.c">
+                                       RelativePath="..\..\prowizard\tests\zen.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                        </Filter>
                        <Filter
                                Name="depack"
-                               Filter="">
+                               >
                                <File
-                                       RelativePath="..\..\prowizard\depack\ac1d.c">
+                                       RelativePath="..\..\prowizard\depack\ac1d.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\ambk.c">
+                                       RelativePath="..\..\prowizard\depack\ambk.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\di.c">
+                                       RelativePath="..\..\prowizard\depack\di.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\eureka.c">
+                                       RelativePath="..\..\prowizard\depack\eureka.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\fc-m.c">
+                                       RelativePath="..\..\prowizard\depack\fc-m.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\fuchs.c">
+                                       RelativePath="..\..\prowizard\depack\fuchs.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\fuzzac.c">
+                                       RelativePath="..\..\prowizard\depack\fuzzac.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\gmc.c">
+                                       RelativePath="..\..\prowizard\depack\gmc.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\gnpl.c">
+                                       RelativePath="..\..\prowizard\depack\gnpl.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\gpmo.c">
+                                       RelativePath="..\..\prowizard\depack\gpmo.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\heatseek.c">
+                                       RelativePath="..\..\prowizard\depack\heatseek.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\hrt.c">
+                                       RelativePath="..\..\prowizard\depack\hrt.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\kris.c">
+                                       RelativePath="..\..\prowizard\depack\kris.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\ksm.c">
+                                       RelativePath="..\..\prowizard\depack\ksm.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\mp.c">
+                                       RelativePath="..\..\prowizard\depack\mp.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\newtron.c">
+                                       RelativePath="..\..\prowizard\depack\newtron.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\nfh.c">
+                                       RelativePath="..\..\prowizard\depack\nfh.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\noiserun.c">
+                                       RelativePath="..\..\prowizard\depack\noiserun.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\np1.c">
+                                       RelativePath="..\..\prowizard\depack\np1.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\np2.c">
+                                       RelativePath="..\..\prowizard\depack\np2.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\np3.c">
+                                       RelativePath="..\..\prowizard\depack\np3.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\p22a.c">
+                                       RelativePath="..\..\prowizard\depack\p22a.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\p30a.c">
+                                       RelativePath="..\..\prowizard\depack\p30a.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\p40.c">
+                                       RelativePath="..\..\prowizard\depack\p40.c"
+                                       >
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\p41a.c">
+                                       RelativePath="..\..\prowizard\depack\p41a.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\p50a.c">
+                                       RelativePath="..\..\prowizard\depack\p50a.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\p60a.c">
+                                       RelativePath="..\..\prowizard\depack\p60a.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\p61a.c">
+                                       RelativePath="..\..\prowizard\depack\p61a.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\pha.c">
+                                       RelativePath="..\..\prowizard\depack\pha.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\pm.c">
+                                       RelativePath="..\..\prowizard\depack\pm.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\pm01.c">
+                                       RelativePath="..\..\prowizard\depack\pm01.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\pm10c.c">
+                                       RelativePath="..\..\prowizard\depack\pm10c.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\pm18a.c">
+                                       RelativePath="..\..\prowizard\depack\pm18a.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)1.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\pm20.c">
+                                       RelativePath="..\..\prowizard\depack\pm20.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\pm40.c">
+                                       RelativePath="..\..\prowizard\depack\pm40.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\polka.c">
+                                       RelativePath="..\..\prowizard\depack\polka.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\pp10.c">
+                                       RelativePath="..\..\prowizard\depack\pp10.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\pp21.c">
+                                       RelativePath="..\..\prowizard\depack\pp21.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\pp30.c">
+                                       RelativePath="..\..\prowizard\depack\pp30.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\prun1.c">
+                                       RelativePath="..\..\prowizard\depack\prun1.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\prun2.c">
+                                       RelativePath="..\..\prowizard\depack\prun2.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\qc.c">
+                                       RelativePath="..\..\prowizard\depack\qc.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\skyt.c">
+                                       RelativePath="..\..\prowizard\depack\skyt.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\soundfx.c">
+                                       RelativePath="..\..\prowizard\depack\soundfx.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\starpack.c">
+                                       RelativePath="..\..\prowizard\depack\starpack.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\stim.c">
+                                       RelativePath="..\..\prowizard\depack\stim.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\stk26.c">
+                                       RelativePath="..\..\prowizard\depack\stk26.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\tdd.c">
+                                       RelativePath="..\..\prowizard\depack\tdd.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\tp1.c">
+                                       RelativePath="..\..\prowizard\depack\tp1.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\tp2.c">
+                                       RelativePath="..\..\prowizard\depack\tp2.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\tp3.c">
+                                       RelativePath="..\..\prowizard\depack\tp3.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\unic.c">
+                                       RelativePath="..\..\prowizard\depack\unic.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)3.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)3.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)3.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)3.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)3.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)3.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\unic2.c">
+                                       RelativePath="..\..\prowizard\depack\unic2.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\wn.c">
+                                       RelativePath="..\..\prowizard\depack\wn.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\xann.c">
+                                       RelativePath="..\..\prowizard\depack\xann.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                                <File
-                                       RelativePath="..\..\prowizard\depack\zen.c">
+                                       RelativePath="..\..\prowizard\depack\zen.c"
+                                       >
                                        <FileConfiguration
-                                               Name="Debug|Win32">
+                                               Name="Debug|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="Release|Win32">
+                                               Name="Release|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                        <FileConfiguration
-                                               Name="TestRelease|Win32">
+                                               Name="TestRelease|Win32"
+                                               >
                                                <Tool
                                                        Name="VCCLCompilerTool"
-                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"/>
+                                                       ObjectFile="$(IntDir)/$(InputName)2.obj"
+                                               />
                                        </FileConfiguration>
                                </File>
                        </Filter>
                </Filter>
                <File
-                       RelativePath="..\resources\drive_click.wav">
+                       RelativePath="..\resources\drive_click.wav"
+                       >
                </File>
                <File
-                       RelativePath="..\resources\drive_snatch.wav">
+                       RelativePath="..\resources\drive_snatch.wav"
+                       >
                </File>
                <File
-                       RelativePath="..\resources\drive_spin.wav">
+                       RelativePath="..\resources\drive_spin.wav"
+                       >
                </File>
                <File
-                       RelativePath="..\resources\drive_spinnd.wav">
+                       RelativePath="..\resources\drive_spinnd.wav"
+                       >
                </File>
                <File
-                       RelativePath="..\resources\drive_startup.wav">
+                       RelativePath="..\resources\drive_startup.wav"
+                       >
                </File>
                <File
-                       RelativePath="..\resources\resource.h">
+                       RelativePath="..\resources\resource.h"
+                       >
                </File>
                <File
-                       RelativePath="..\resources\resource.hm">
+                       RelativePath="..\resources\resource.hm"
+                       >
                </File>
                <File
-                       RelativePath="..\resources\winuae.exe.manifest">
+                       RelativePath="..\resources\winuae.exe.manifest"
+                       >
+                       <FileConfiguration
+                               Name="Debug|Win32"
+                               ExcludedFromBuild="true"
+                               >
+                               <Tool
+                                       Name="VCCustomBuildTool"
+                               />
+                       </FileConfiguration>
+                       <FileConfiguration
+                               Name="Release|Win32"
+                               ExcludedFromBuild="true"
+                               >
+                               <Tool
+                                       Name="VCCustomBuildTool"
+                               />
+                       </FileConfiguration>
+                       <FileConfiguration
+                               Name="TestRelease|Win32"
+                               ExcludedFromBuild="true"
+                               >
+                               <Tool
+                                       Name="VCCustomBuildTool"
+                               />
+                       </FileConfiguration>
                </File>
        </Files>
        <Globals>
index 30765d1790e690b1ec09845f5b76e5b749a42c81..59ed73fe36843c902f31bc3e8471c01ceadf7677 100755 (executable)
@@ -165,6 +165,7 @@ static char *getdevname (int type)
        return UAEDEV_DISK;
        default:
        abort ();
+       return NULL;
     }
 }