From: Toni Wilen Date: Wed, 11 May 2005 14:33:07 +0000 (+0300) Subject: imported winuaesrc1000b8.zip X-Git-Tag: 2100~313 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=57065523c8522216096136ec234025c8b4c33673;p=francis%2Fwinuae.git imported winuaesrc1000b8.zip --- diff --git a/akiko.c b/akiko.c index dfbdaf96..5e391969 100755 --- 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 efb638eb..b579736d 100755 --- 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; diff --git a/blkdev.c b/blkdev.c index 07eec9f4..dbc2d38a 100755 --- 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]); } diff --git a/compemu_fpp.c b/compemu_fpp.c index 7d475949..db9564f4 100755 --- a/compemu_fpp.c +++ b/compemu_fpp.c @@ -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) diff --git a/include/akiko.h b/include/akiko.h index ca9d61fa..2f6e6b91 100755 --- a/include/akiko.h +++ b/include/akiko.h @@ -13,3 +13,4 @@ extern void akiko_exitgui (void); extern void AKIKO_hsync_handler (void); extern int cd32_enabled; +extern uae_u8 *extendedkickmemory; diff --git a/inputdevice.c b/inputdevice.c index cc784e8d..a5541526 100755 --- a/inputdevice.c +++ b/inputdevice.c @@ -893,6 +893,7 @@ uae_u8 handle_parport_joystick (int port, uae_u8 pra, uae_u8 dra) return v; default: abort (); + return 0; } } diff --git a/od-win32/blkdev_win32_spti.c b/od-win32/blkdev_win32_spti.c index 34600cf4..aff70688 100755 --- a/od-win32/blkdev_win32_spti.c +++ b/od-win32/blkdev_win32_spti.c @@ -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) diff --git a/od-win32/build68k_msvc/build68k_msvc.vcproj b/od-win32/build68k_msvc/build68k_msvc.vcproj index 991a29fa..897949fe 100755 --- a/od-win32/build68k_msvc/build68k_msvc.vcproj +++ b/od-win32/build68k_msvc/build68k_msvc.vcproj @@ -1,86 +1,137 @@ + SignManifests="true" + > + Name="Win32" + /> + + + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + + + + + + SuppressStartupBanner="true" + CompileAs="0" + /> + + + Name="VCPreLinkEventTool" + Description="deleting cpudefs.c" + CommandLine="del ..\..\cpudefs.c" + /> + SubSystem="1" + /> + Name="VCALinkTool" + /> + Name="VCManifestTool" + /> + Name="VCXDCMakeTool" + /> + Name="VCBscMakeTool" + /> - - + Name="VCFxCopTool" + /> + Name="VCAppVerifierTool" + /> + Name="VCWebDeploymentTool" + /> + Name="VCPostBuildEventTool" + Description="creating cpudefs.c" + CommandLine="build68k.exe >..\..\cpudefs.c <..\..\table68k" + /> + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + + + + + + CompileAs="0" + /> + + + Name="VCPreLinkEventTool" + Description="deleting cpudefs.c" + CommandLine="del ..\..\cpudefs.c" + /> + SubSystem="1" + /> + Name="VCALinkTool" + /> + Name="VCManifestTool" + /> - - + Name="VCXDCMakeTool" + /> + Name="VCBscMakeTool" + /> + Name="VCFxCopTool" + /> + Name="VCAppVerifierTool" + /> + Name="VCWebDeploymentTool" + /> + Name="VCPostBuildEventTool" + Description="creating cpudefs.c" + CommandLine="build68k.exe >..\..\cpudefs.c <..\..\table68k" + /> + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + + + + + + SuppressStartupBanner="true" + CompileAs="0" + /> + Name="VCManagedResourceCompilerTool" + /> + + + SubSystem="1" + /> + Name="VCALinkTool" + /> + Name="VCManifestTool" + /> + Name="VCXDCMakeTool" + /> - - + Name="VCBscMakeTool" + /> + Name="VCFxCopTool" + /> + Name="VCAppVerifierTool" + /> + Name="VCWebDeploymentTool" + /> + Name="VCPostBuildEventTool" + Description="creating cpudefs.c" + CommandLine="build68k.exe >..\..\cpudefs.c <..\..\table68k" + /> @@ -204,9 +297,11 @@ + Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" + > + RelativePath="..\..\build68k.c" + > diff --git a/od-win32/dinput.c b/od-win32/dinput.c index 0812860c..95ab02a9 100755 --- a/od-win32/dinput.c +++ b/od-win32/dinput.c @@ -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]; diff --git a/od-win32/genblitter_msvc/genblitter_msvc.vcproj b/od-win32/genblitter_msvc/genblitter_msvc.vcproj index 2fe497ec..5f5bb42b 100755 --- a/od-win32/genblitter_msvc/genblitter_msvc.vcproj +++ b/od-win32/genblitter_msvc/genblitter_msvc.vcproj @@ -1,94 +1,137 @@ + SignManifests="true" + > + Name="Win32" + /> + + + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + + + + + + SuppressStartupBanner="true" + CompileAs="0" + /> + + + Name="VCPreLinkEventTool" + Description="deleting blitter files" + CommandLine="del ..\..\blit.h del ..\..\blitfunc.c del ..\..\blitfunc.h del ..\..\blittable.c " + /> + SubSystem="1" + /> + Name="VCALinkTool" + /> + Name="VCManifestTool" + /> + Name="VCXDCMakeTool" + /> + Name="VCBscMakeTool" + /> - - + Name="VCFxCopTool" + /> + Name="VCAppVerifierTool" + /> + Name="VCWebDeploymentTool" + /> + Name="VCPostBuildEventTool" + Description="generating blitter files" + CommandLine="genblitter.exe i >..\..\blit.h genblitter.exe f >..\..\blitfunc.c genblitter.exe h >..\..\blitfunc.h genblitter.exe t >..\..\blittable.c " + /> + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + + + + + + CompileAs="0" + /> + + + Name="VCPreLinkEventTool" + Description="deleting blitter files" + CommandLine="del ..\..\blit.h del ..\..\blitfunc.c del ..\..\blitfunc.h del ..\..\blittable.c " + /> + SubSystem="1" + /> + Name="VCALinkTool" + /> + Name="VCManifestTool" + /> - - + Name="VCXDCMakeTool" + /> + Name="VCBscMakeTool" + /> + Name="VCFxCopTool" + /> + Name="VCAppVerifierTool" + /> + Name="VCWebDeploymentTool" + /> + Name="VCPostBuildEventTool" + Description="generating blitter files" + CommandLine="genblitter.exe i >..\..\blit.h genblitter.exe f >..\..\blitfunc.c genblitter.exe h >..\..\blitfunc.h genblitter.exe t >..\..\blittable.c " + /> + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + + + + + + SuppressStartupBanner="true" + CompileAs="0" + /> + Name="VCManagedResourceCompilerTool" + /> + + + SubSystem="1" + /> + Name="VCALinkTool" + /> + Name="VCManifestTool" + /> + Name="VCXDCMakeTool" + /> - - + Name="VCBscMakeTool" + /> + Name="VCFxCopTool" + /> + Name="VCAppVerifierTool" + /> + Name="VCWebDeploymentTool" + /> + Name="VCPostBuildEventTool" + Description="generating blitter files" + CommandLine="genblitter.exe i >..\..\blit.h genblitter.exe f >..\..\blitfunc.c genblitter.exe h >..\..\blitfunc.h genblitter.exe t >..\..\blittable.c " + /> @@ -228,12 +297,15 @@ del ..\..\blittable.c + Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" + > + RelativePath="..\..\blitops.c" + > + RelativePath="..\..\genblitter.c" + > diff --git a/od-win32/gencomp_msvc/gencomp_msvc.vcproj b/od-win32/gencomp_msvc/gencomp_msvc.vcproj index d5122b9a..8e3d89e4 100755 --- a/od-win32/gencomp_msvc/gencomp_msvc.vcproj +++ b/od-win32/gencomp_msvc/gencomp_msvc.vcproj @@ -1,86 +1,135 @@ + SignManifests="true" + > + Name="Win32" + /> + + + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + + + + + + SuppressStartupBanner="true" + CompileAs="0" + /> + Name="VCManagedResourceCompilerTool" + /> + + + SubSystem="1" + /> + Name="VCALinkTool" + /> + Name="VCManifestTool" + /> + Name="VCXDCMakeTool" + /> + Name="VCBscMakeTool" + /> + Name="VCFxCopTool" + /> + Name="VCAppVerifierTool" + /> + Name="VCWebDeploymentTool" + /> - - + Name="VCPostBuildEventTool" + Description="generating gencomp files" + CommandLine="cd ..\.. od-win32\gencomp_msvc\gencomp.exe " + /> + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + + + + + + CompileAs="0" + /> + + + Name="VCPreLinkEventTool" + /> + SubSystem="1" + /> - + Name="VCALinkTool" + /> + Name="VCManifestTool" + /> - + Name="VCXDCMakeTool" + /> + Name="VCBscMakeTool" + /> + Name="VCFxCopTool" + /> + Name="VCAppVerifierTool" + /> + Name="VCWebDeploymentTool" + /> + Name="VCPostBuildEventTool" + Description="generating gencomp files" + CommandLine="cd ..\.. od-win32\gencomp_msvc\gencomp.exe " + /> + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + + + + + + SuppressStartupBanner="true" + CompileAs="0" + /> + + Name="VCResourceCompilerTool" + PreprocessorDefinitions="NDEBUG" + Culture="1033" + /> + - + SubSystem="1" + /> + Name="VCALinkTool" + /> + Name="VCManifestTool" + /> + Name="VCXDCMakeTool" + /> + Name="VCBscMakeTool" + /> + Name="VCFxCopTool" + /> + Name="VCAppVerifierTool" + /> + Name="VCWebDeploymentTool" + /> - + Name="VCPostBuildEventTool" + Description="generating gencomp files" + CommandLine="cd ..\.. od-win32\gencomp_msvc\gencomp.exe " + /> @@ -205,21 +292,27 @@ od-win32\gencomp_msvc\gencomp.exe + Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" + > + RelativePath="..\..\cpudefs.c" + > + RelativePath="..\..\gencomp.c" + > + RelativePath="..\..\missing.c" + > + RelativePath="..\..\readcpu.c" + > + RelativePath="..\writelog.c" + > diff --git a/od-win32/gencpu_msvc/gencpu_msvc.vcproj b/od-win32/gencpu_msvc/gencpu_msvc.vcproj index 767fab6a..2a91c685 100755 --- a/od-win32/gencpu_msvc/gencpu_msvc.vcproj +++ b/od-win32/gencpu_msvc/gencpu_msvc.vcproj @@ -1,24 +1,45 @@ + SignManifests="true" + > + Name="Win32" + /> + + + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + + + + + + CompileAs="0" + /> + + + Name="VCPreLinkEventTool" + Description="deleting gencpu files" + CommandLine="del ..\..\cputbl.h;del ..\..\cpustbl.c ;del ..\..\cpuemu.c " + /> + SubSystem="1" + /> + Name="VCALinkTool" + /> + Name="VCManifestTool" + /> + Name="VCXDCMakeTool" + /> + Name="VCBscMakeTool" + /> - - + Name="VCFxCopTool" + /> + Name="VCAppVerifierTool" + /> + Name="VCWebDeploymentTool" + /> + Name="VCPostBuildEventTool" + Description="generating gencpu files" + CommandLine="cd ..\.. od-win32\gencpu_msvc\gencpu.exe " + /> + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + + + + + + SuppressStartupBanner="true" + CompileAs="0" + /> + + + Name="VCPreLinkEventTool" + Description="deleting gencpu files" + CommandLine="del ..\..\cputbl.h del ..\..\cpustbl.c del ..\..\cpuemu.c " + /> + SubSystem="1" + /> + Name="VCALinkTool" + /> + Name="VCManifestTool" + /> - - + Name="VCXDCMakeTool" + /> + Name="VCBscMakeTool" + /> + Name="VCFxCopTool" + /> + Name="VCAppVerifierTool" + /> + Name="VCWebDeploymentTool" + /> + Name="VCPostBuildEventTool" + Description="generating gencpu files" + CommandLine="cd ..\.. od-win32\gencpu_msvc\gencpu.exe " + /> + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + + + + + + SuppressStartupBanner="true" + CompileAs="0" + /> + Name="VCManagedResourceCompilerTool" + /> + + + SubSystem="1" + /> + Name="VCALinkTool" + /> + Name="VCManifestTool" + /> + Name="VCXDCMakeTool" + /> - - + Name="VCBscMakeTool" + /> + Name="VCFxCopTool" + /> + Name="VCAppVerifierTool" + /> + Name="VCWebDeploymentTool" + /> + Name="VCPostBuildEventTool" + Description="generating gencpu files" + CommandLine="cd ..\.. od-win32\gencpu_msvc\gencpu.exe " + /> @@ -219,21 +298,27 @@ del ..\..\cpuemu.c + Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" + > + RelativePath="..\..\cpudefs.c" + > + RelativePath="..\..\gencpu.c" + > + RelativePath="..\..\missing.c" + > + RelativePath="..\..\readcpu.c" + > + RelativePath="..\writelog.c" + > diff --git a/od-win32/picasso96_win.c b/od-win32/picasso96_win.c index 05416bdb..bfbb7f23 100755 --- a/od-win32/picasso96_win.c +++ b/od-win32/picasso96_win.c @@ -362,6 +362,7 @@ static uae_u8 GetBytesPerPixel2(uae_u32 RGBfmt, char *file, int line) abort(); } } + return 0; } /* diff --git a/od-win32/resources/winuae.exe.manifest b/od-win32/resources/winuae.exe.manifest index dbd80124..1ad2ee6b 100755 --- a/od-win32/resources/winuae.exe.manifest +++ b/od-win32/resources/winuae.exe.manifest @@ -19,4 +19,4 @@ /> - \ No newline at end of file + diff --git a/od-win32/resources/winuae_minimal.rc b/od-win32/resources/winuae_minimal.rc index d0701f8f..61d792f2 100755 --- a/od-win32/resources/winuae_minimal.rc +++ b/od-win32/resources/winuae_minimal.rc @@ -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 diff --git a/od-win32/sysconfig.h b/od-win32/sysconfig.h index 9d06418c..0136138b 100755 --- a/od-win32/sysconfig.h +++ b/od-win32/sysconfig.h @@ -1,5 +1,6 @@ #pragma warning (disable : 4761) +#pragma warning (disable: 4996) #define DIRECTINPUT_VERSION 0x0800 #define DIRECT3D_VERSION 0x0900 diff --git a/od-win32/win32.c b/od-win32/win32.c index 8dcd7fa7..14b34488 100755 --- a/od-win32/win32.c +++ b/od-win32/win32.c @@ -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); diff --git a/od-win32/win32.h b/od-win32/win32.h index 0e314bf8..0b254959 100755 --- a/od-win32/win32.h +++ b/od-win32/win32.h @@ -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 { diff --git a/od-win32/win32gfx.c b/od-win32/win32gfx.c index ea18660b..6f2b05fc 100755 --- a/od-win32/win32gfx.c +++ b/od-win32/win32gfx.c @@ -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); diff --git a/od-win32/win32gui.c b/od-win32/win32gui.c index 0d47b9ae..f97fc89c 100755 --- a/od-win32/win32gui.c +++ b/od-win32/win32gui.c @@ -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); diff --git a/od-win32/winuae_msvc/winuae_msvc.vcproj b/od-win32/winuae_msvc/winuae_msvc.vcproj index 6c7b6fb9..efb0829e 100755 --- a/od-win32/winuae_msvc/winuae_msvc.vcproj +++ b/od-win32/winuae_msvc/winuae_msvc.vcproj @@ -1,255 +1,349 @@ + ProjectGUID="{4ADAA943-1AC8-4FB5-82E5-4FB753B6C2DA}" + RootNamespace="winuae" + > + Name="Win32" + /> + + + ATLMinimizesCRunTimeLibraryUsage="false" + CharacterSet="2" + > + + + + + + CompileAs="0" + DisableSpecificWarnings="4996" + EnablePREfast="false" + /> + + Name="VCResourceCompilerTool" + PreprocessorDefinitions="_DEBUG" + Culture="1033" + /> + - - + StackCommitSize="2621440" + /> + Name="VCALinkTool" + /> + Name="VCManifestTool" + /> + Name="VCXDCMakeTool" + /> + Name="VCBscMakeTool" + /> + Name="VCFxCopTool" + /> + Name="VCAppVerifierTool" + /> + Name="VCWebDeploymentTool" + /> + Name="VCPostBuildEventTool" + /> + > + + + + + + DisableSpecificWarnings="4996" + ForcedIncludeFiles="" + /> + Name="VCManagedResourceCompilerTool" + /> + + + OptimizeForWindows98="0" + LinkTimeCodeGeneration="0" + /> + Name="VCALinkTool" + /> + Name="VCManifestTool" + /> + Name="VCXDCMakeTool" + /> + Name="VCBscMakeTool" + /> - + Name="VCFxCopTool" + /> + Name="VCAppVerifierTool" + /> + Name="VCWebDeploymentTool" + /> - + Name="VCPostBuildEventTool" + /> + > + + + + + + ForcedIncludeFiles="" + /> + + + Name="VCPreLinkEventTool" + /> + OptimizeForWindows98="0" + /> - + Name="VCALinkTool" + /> + Name="VCManifestTool" + /> - + Name="VCXDCMakeTool" + /> + Name="VCBscMakeTool" + /> + Name="VCFxCopTool" + /> + Name="VCAppVerifierTool" + /> + Name="VCWebDeploymentTool" + /> + Name="VCPostBuildEventTool" + /> @@ -257,3819 +351,5107 @@ + Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" + > + RelativePath="..\resources\35floppy.ico" + > + RelativePath="..\resources\amigainfo.ico" + > + RelativePath="..\resources\avioutput.ico" + > + RelativePath="..\resources\chip.ico" + > + RelativePath="..\resources\cpu.ico" + > + RelativePath="..\resources\Drive.ico" + > + RelativePath="..\resources\file.ico" + > + RelativePath="..\resources\folder.ico" + > + RelativePath="..\resources\h_arrow.cur" + > + RelativePath="..\resources\joystick.ico" + > + RelativePath="..\resources\misc.ico" + > + RelativePath="..\resources\move_dow.ico" + > + RelativePath="..\resources\move_up.ico" + > + RelativePath="..\resources\paths.ico" + > + RelativePath="..\resources\quickstart.ico" + > + RelativePath="..\resources\root.ico" + > + RelativePath="..\resources\screen.ico" + > + RelativePath="..\resources\sound.ico" + > + RelativePath="..\resources\winuae.ico" + > + RelativePath="..\resources\winuae.rc" + > + Name="Debug|Win32" + > + AdditionalIncludeDirectories="\projects\winuae\src\od-win32\resources;$(NoInherit)" + /> + Name="Release|Win32" + > + AdditionalIncludeDirectories="\projects\winuae\src\od-win32\resources;$(NoInherit)" + /> + Name="TestRelease|Win32" + > + AdditionalIncludeDirectories="\projects\winuae\src\od-win32\resources;$(NoInherit)" + /> + RelativePath="..\resources\xarcade-winuae.bmp" + > + Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" + > + RelativePath="..\ahidsound.c" + > + RelativePath="..\avioutput.c" + > + RelativePath="..\blkdev_win32_aspi.c" + > + RelativePath="..\blkdev_win32_ioctl.c" + > + RelativePath="..\blkdev_win32_spti.c" + > + RelativePath="..\bsdsock.c" + > + RelativePath="..\caps\caps_win32.c" + > + RelativePath="..\dinput.c" + > + RelativePath="..\direct3d.c" + > + RelativePath="..\dxwrap.c" + > + RelativePath="..\fsdb_win32.c" + > + RelativePath="..\hardfile_win32.c" + > + RelativePath="..\ioport.c" + > + RelativePath="..\keyboard_win32.c" + > + RelativePath="..\midi.c" + > + RelativePath="..\mman.c" + > + RelativePath="..\opengl.c" + > + RelativePath="..\parser.c" + > + RelativePath="..\picasso96_win.c" + > + RelativePath="..\posixemu.c" + > + RelativePath="..\scaler.c" + > + RelativePath="..\screenshot.c" + > + RelativePath="..\serial_win32.c" + > + RelativePath="..\sounddep\sound.c" + > + RelativePath="..\support.c" + > + RelativePath="..\win32.c" + > + RelativePath="..\win32_scale2x.c" + > + RelativePath="..\win32gfx.c" + > + RelativePath="..\win32gui.c" + > + RelativePath="..\writelog.c" + > + Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" + > + RelativePath="..\..\akiko.c" + > + RelativePath="..\..\ar.c" + > + RelativePath="..\..\arcadia.c" + > + RelativePath="..\..\audio.c" + > + RelativePath="..\..\autoconf.c" + > + RelativePath="..\..\blitfunc.c" + > + RelativePath="..\..\blittable.c" + > + RelativePath="..\..\blitter.c" + > + RelativePath="..\..\blkdev.c" + > + RelativePath="..\..\bsdsocket.c" + > + RelativePath="..\..\catweasel.c" + > + RelativePath="..\..\cdrom.c" + > + RelativePath="..\..\cdtv.c" + > + RelativePath="..\..\cfgfile.c" + > + RelativePath="..\..\cia.c" + > + RelativePath="..\..\cpudefs.c" + > + RelativePath="..\..\cpuemu_0.c" + > + RelativePath="..\..\cpuemu_5.c" + > + RelativePath="..\..\cpuemu_6.c" + > + RelativePath="..\..\cpustbl.c" + > + RelativePath="..\..\crc32.c" + > + RelativePath="..\..\custom.c" + > + RelativePath="..\..\debug.c" + > + RelativePath="..\..\disk.c" + > + RelativePath="..\..\drawing.c" + > + RelativePath="..\..\driveclick.c" + > + RelativePath="..\..\enforcer.c" + > + RelativePath="..\..\ersatz.c" + > + RelativePath="..\..\expansion.c" + > + RelativePath="..\..\fdi2raw.c" + > + RelativePath="..\..\filesys.c" + > + RelativePath="..\..\fpp.c" + > + RelativePath="..\..\fsdb.c" + > + RelativePath="..\..\fsusage.c" + > + RelativePath="..\..\gfxlib.c" + > + RelativePath="..\..\gfxutil.c" + > + RelativePath="..\..\hardfile.c" + > + RelativePath="..\..\identify.c" + > + RelativePath="..\..\inputdevice.c" + > + RelativePath="..\..\keybuf.c" + > + RelativePath="..\..\main.c" + > + RelativePath="..\..\memory.c" + > + RelativePath="..\..\missing.c" + > + RelativePath="..\..\moduleripper.c" + > + RelativePath="..\..\native2amiga.c" + > + RelativePath="..\..\newcpu.c" + > + RelativePath="..\..\readcpu.c" + > + RelativePath="..\..\savestate.c" + > + RelativePath="..\..\scsiemul.c" + > + RelativePath="..\..\uaeexe.c" + > + RelativePath="..\..\uaelib.c" + > + RelativePath="..\..\unzip.c" + > + RelativePath="..\..\zfile.c" + > + Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" + > + RelativePath="..\..\compemu.c" + > + RelativePath="..\..\compemu_fpp.c" + > + RelativePath="..\..\compemu_support.c" + > + RelativePath="..\..\compstbl.c" + > + > + RelativePath="..\..\dms\cdata.h" + > + RelativePath="..\..\dms\crc_csum.c" + > + RelativePath="..\..\dms\getbits.c" + > + RelativePath="..\..\dms\maketbl.c" + > + RelativePath="..\..\dms\pfile.c" + > + RelativePath="..\..\dms\tables.c" + > + RelativePath="..\..\dms\u_deep.c" + > + RelativePath="..\..\dms\u_heavy.c" + > + RelativePath="..\..\dms\u_init.c" + > + RelativePath="..\..\dms\u_medium.c" + > + RelativePath="..\..\dms\u_quick.c" + > + RelativePath="..\..\dms\u_rle.c" + > + > + RelativePath="..\..\prowizard\misc\misc.c" + > + RelativePath="..\..\prowizard\prowiz.c" + > + RelativePath="..\..\prowizard\misc\testbag.c" + > + > + RelativePath="..\..\prowizard\rips\ac1d.c" + > + RelativePath="..\..\prowizard\rips\ambk.c" + > + RelativePath="..\..\prowizard\rips\bp.c" + > + RelativePath="..\..\prowizard\rips\bsifc.c" + > + RelativePath="..\..\prowizard\rips\bytek30.c" + > + RelativePath="..\..\prowizard\rips\bytekil.c" + > + RelativePath="..\..\prowizard\rips\bytekp10.c" + > + RelativePath="..\..\prowizard\rips\crmaddr.c" + > + RelativePath="..\..\prowizard\rips\dblatn.c" + > + RelativePath="..\..\prowizard\rips\defjam32.c" + > + RelativePath="..\..\prowizard\rips\di.c" + > + RelativePath="..\..\prowizard\rips\digibst.c" + > + RelativePath="..\..\prowizard\rips\eureka.c" + > + RelativePath="..\..\prowizard\rips\fc13.c" + > + RelativePath="..\..\prowizard\rips\fc14.c" + > + RelativePath="..\..\prowizard\rips\fc_m.c" + > + RelativePath="..\..\prowizard\rips\fuchs.c" + > + RelativePath="..\..\prowizard\rips\fuzzac.c" + > + RelativePath="..\..\prowizard\rips\gmc.c" + > + RelativePath="..\..\prowizard\rips\gnpl.c" + > + RelativePath="..\..\prowizard\rips\gpmo.c" + > + RelativePath="..\..\prowizard\rips\heatseek.c" + > + RelativePath="..\..\prowizard\rips\hqc2.c" + > + RelativePath="..\..\prowizard\rips\hrt.c" + > + RelativePath="..\..\prowizard\rips\jamcrack.c" + > + RelativePath="..\..\prowizard\rips\kris.c" + > + RelativePath="..\..\prowizard\rips\ksm.c" + > + RelativePath="..\..\prowizard\rips\maxpac12.c" + > + RelativePath="..\..\prowizard\rips\mc30addr.c" + > + RelativePath="..\..\prowizard\rips\mcobj.c" + > + RelativePath="..\..\prowizard\rips\mcrun.c" + > + RelativePath="..\..\prowizard\rips\med.c" + > + RelativePath="..\..\prowizard\rips\mp.c" + > + RelativePath="..\..\prowizard\rips\newtron.c" + > + RelativePath="..\..\prowizard\rips\nfh.c" + > + RelativePath="..\..\prowizard\rips\noiserun.c" + > + RelativePath="..\..\prowizard\rips\npd1.c" + > + RelativePath="..\..\prowizard\rips\npd2.c" + > + RelativePath="..\..\prowizard\rips\npd3.c" + > + RelativePath="..\..\prowizard\rips\p22a.c" + > + RelativePath="..\..\prowizard\rips\p30a.c" + > + RelativePath="..\..\prowizard\rips\p40a.c" + > + RelativePath="..\..\prowizard\rips\p40b.c" + > + RelativePath="..\..\prowizard\rips\p41a.c" + > + RelativePath="..\..\prowizard\rips\p50a.c" + > + RelativePath="..\..\prowizard\rips\p60a.c" + > + RelativePath="..\..\prowizard\rips\p61a.c" + > + RelativePath="..\..\prowizard\rips\pha.c" + > + RelativePath="..\..\prowizard\rips\pm.c" + > + RelativePath="..\..\prowizard\rips\pm01.c" + > + RelativePath="..\..\prowizard\rips\pm10c.c" + > + RelativePath="..\..\prowizard\rips\pm18a.c" + > + RelativePath="..\..\prowizard\rips\pm20.c" + > + RelativePath="..\..\prowizard\rips\pm40.c" + > + RelativePath="..\..\prowizard\rips\polka.c" + > + RelativePath="..\..\prowizard\rips\powerp23.c" + > + RelativePath="..\..\prowizard\rips\powerp30.c" + > + RelativePath="..\..\prowizard\rips\powerp40.c" + > + RelativePath="..\..\prowizard\rips\powerp4l.c" + > + RelativePath="..\..\prowizard\rips\pp10.c" + > + RelativePath="..\..\prowizard\rips\pp21.c" + > + RelativePath="..\..\prowizard\rips\pp30.c" + > + RelativePath="..\..\prowizard\rips\ppbk.c" + > + RelativePath="..\..\prowizard\rips\prun1.c" + > + RelativePath="..\..\prowizard\rips\prun2.c" + > + RelativePath="..\..\prowizard\rips\ptk.c" + > + RelativePath="..\..\prowizard\rips\qc.c" + > + RelativePath="..\..\prowizard\rips\relokit.c" + > + RelativePath="..\..\prowizard\rips\skyt.c" + > + RelativePath="..\..\prowizard\rips\soundfx.c" + > + RelativePath="..\..\prowizard\rips\soundtk.c" + > + RelativePath="..\..\prowizard\rips\spike.c" + > + RelativePath="..\..\prowizard\rips\starpack.c" + > + RelativePath="..\..\prowizard\rips\startrek.c" + > + RelativePath="..\..\prowizard\rips\stc270.c" + > + RelativePath="..\..\prowizard\rips\stc299.c" + > + RelativePath="..\..\prowizard\rips\stc299b.c" + > + RelativePath="..\..\prowizard\rips\stc299d.c" + > + RelativePath="..\..\prowizard\rips\stc300.c" + > + RelativePath="..\..\prowizard\rips\stc310.c" + > + RelativePath="..\..\prowizard\rips\stim.c" + > + RelativePath="..\..\prowizard\rips\stk26.c" + > + RelativePath="..\..\prowizard\rips\superc27.c" + > + RelativePath="..\..\prowizard\rips\syncro.c" + > + RelativePath="..\..\prowizard\rips\tdd.c" + > + RelativePath="..\..\prowizard\rips\time17.c" + > + RelativePath="..\..\prowizard\rips\tnmc11.c" + > + RelativePath="..\..\prowizard\rips\tp1.c" + > + RelativePath="..\..\prowizard\rips\tp2.c" + > + RelativePath="..\..\prowizard\rips\tp3.c" + > + RelativePath="..\..\prowizard\rips\tpack102.c" + > + RelativePath="..\..\prowizard\rips\tpack21.c" + > + RelativePath="..\..\prowizard\rips\tpack22.c" + > + RelativePath="..\..\prowizard\rips\tryit101.c" + > + RelativePath="..\..\prowizard\rips\turbosqueezer61.c" + > + RelativePath="..\..\prowizard\rips\unic.c" + > + RelativePath="..\..\prowizard\rips\unic2.c" + > + RelativePath="..\..\prowizard\rips\wn.c" + > + RelativePath="..\..\prowizard\rips\xann.c" + > + RelativePath="..\..\prowizard\rips\xm.c" + > + RelativePath="..\..\prowizard\rips\zen.c" + > + > + RelativePath="..\..\prowizard\tests\ac1d.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\ambk.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\arcd.c" + > + RelativePath="..\..\prowizard\tests\bp.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\bsifc.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\bytek13.c" + > + RelativePath="..\..\prowizard\tests\bytek20.c" + > + RelativePath="..\..\prowizard\tests\bytek30.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\bytekp10.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\crmaddr.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\crnd.c" + > + RelativePath="..\..\prowizard\tests\dblatn.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\defja32p.c" + > + RelativePath="..\..\prowizard\tests\defjam32.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\di.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\digibst.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\eureka.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\fc13.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\fc14.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\fc_m.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\fuchs.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\fuzzac.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\gmc.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\gnpl.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\gpmo.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\heatseek.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\hqc2.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\hrt.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\jamcrack.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\kris.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\ksm.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\maxpac12.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\mc30addr.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\mcobj.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\mcrun10.c" + > + RelativePath="..\..\prowizard\tests\mcrun12.c" + > + RelativePath="..\..\prowizard\tests\mmd0.c" + > + RelativePath="..\..\prowizard\tests\mp.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\newtron.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\nfh.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\noiserun.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\npd1.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\npd2.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\npd3.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\p40a.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\p41a.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\p50a.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\p60a.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\p61a.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\pha.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\pm.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\pm01.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\pm10c.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\pm20.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\pm40.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\pmz.c" + > + RelativePath="..\..\prowizard\tests\polka.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\powerp23.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\powerp30.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\powerp40.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\powerp4l.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\pp10.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\pp21.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\pp30.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\ppbk.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\prun1.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\prun2.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\ptk.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\qc.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\relokit.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\skyt.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\soundfx.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\soundtk.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\spike.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\starpack.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\stc270.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\stc299.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\stc299b.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\stc299d.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\stc300.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\stc310.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\stim.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\stk26.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\superc27.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\syncro.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\tdd.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\time17.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\tnmc11.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\tp1.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\tp2.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\tp3.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\tpack102.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\tpack21.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\tpack22.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\tryit101.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\turbosqueezer61.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\unic.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\unic2.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\wn.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\xann.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\xm.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\tests\zen.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + > + RelativePath="..\..\prowizard\depack\ac1d.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\ambk.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\di.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\eureka.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\fc-m.c" + > + RelativePath="..\..\prowizard\depack\fuchs.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\fuzzac.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\gmc.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\gnpl.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\gpmo.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\heatseek.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\hrt.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\kris.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\ksm.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\mp.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\newtron.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\nfh.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\noiserun.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\np1.c" + > + RelativePath="..\..\prowizard\depack\np2.c" + > + RelativePath="..\..\prowizard\depack\np3.c" + > + RelativePath="..\..\prowizard\depack\p22a.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\depack\p30a.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\depack\p40.c" + > + RelativePath="..\..\prowizard\depack\p41a.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\p50a.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\p60a.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\p61a.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\pha.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\pm.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\pm01.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\pm10c.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\pm18a.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)1.obj" + /> + RelativePath="..\..\prowizard\depack\pm20.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\pm40.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\polka.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\pp10.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\pp21.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\pp30.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\prun1.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\prun2.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\qc.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\skyt.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\soundfx.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\starpack.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\stim.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\stk26.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\tdd.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\tp1.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\tp2.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\tp3.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\unic.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)3.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)3.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)3.obj" + /> + RelativePath="..\..\prowizard\depack\unic2.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\wn.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\xann.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\..\prowizard\depack\zen.c" + > + Name="Debug|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="Release|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + Name="TestRelease|Win32" + > + ObjectFile="$(IntDir)/$(InputName)2.obj" + /> + RelativePath="..\resources\drive_click.wav" + > + RelativePath="..\resources\drive_snatch.wav" + > + RelativePath="..\resources\drive_spin.wav" + > + RelativePath="..\resources\drive_spinnd.wav" + > + RelativePath="..\resources\drive_startup.wav" + > + RelativePath="..\resources\resource.h" + > + RelativePath="..\resources\resource.hm" + > + RelativePath="..\resources\winuae.exe.manifest" + > + + + + + + + + + diff --git a/scsiemul.c b/scsiemul.c index 30765d17..59ed73fe 100755 --- a/scsiemul.c +++ b/scsiemul.c @@ -165,6 +165,7 @@ static char *getdevname (int type) return UAEDEV_DISK; default: abort (); + return NULL; } }