2014-11-03 22:00:35 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<ItemGroup>
|
|
|
|
<Filter Include="Source Files">
|
|
|
|
<UniqueIdentifier>{b6ac9831-b535-4474-a308-d3bf6fdf4488}</UniqueIdentifier>
|
|
|
|
<Extensions>cpp;c;cxx;rc;def;r;odl;idl;hpj;bat</Extensions>
|
|
|
|
</Filter>
|
|
|
|
<Filter Include="Header Files">
|
|
|
|
<UniqueIdentifier>{def4def1-c9b0-48b3-a80b-c137f7ebf9bd}</UniqueIdentifier>
|
|
|
|
<Extensions>h;hpp;hxx;hm;inl</Extensions>
|
|
|
|
</Filter>
|
|
|
|
<Filter Include="Resource Files">
|
|
|
|
<UniqueIdentifier>{ed4624b4-6280-4672-8e7f-e8aac6e178ef}</UniqueIdentifier>
|
|
|
|
<Extensions>ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe</Extensions>
|
|
|
|
</Filter>
|
|
|
|
</ItemGroup>
|
Large set of changes to restore CiderPress build.
CiderPress and MDC now compile, and execute far enough to open
their respective "about" boxes, but I doubt they'll do much
more than that.
* Switch from MBCS to UNICODE APIs
Microsoft switched to UTF-16 (by way of UCS-2) a long time ago,
and the support for MBCS seems to be getting phased out. So it's
time to switch to wide strings.
This is a bit awkward for CiderPress because it works with disk
and file archives with 8-bit filenames, and I want NufxLib and
DiskImgLib to continue to work on Linux (which has largely taken
the UTF-8 approach to Unicode). The libraries will continue to
work with 8-bit filenames, with CiderPress/MDC doing the
conversion at the appropriate point.
There were a couple of places where strings from a structure
handed back by one of the libraries were used directly in the UI,
or vice-versa, which is a problem because we have nowhere to
store the result of the conversion. These currently have fixed
place-holder "xyzzy" strings.
All UI strings are now wide.
Various format strings now use "%ls" and "%hs" to explicitly
specify wide and narrow. This doesn't play well with gcc, so
only the Windows-specific parts use those.
* Various updates to vcxproj files
The project-file conversion had some cruft that is now largely
gone. The build now has a common output directory for the EXEs
and libraries, avoiding the old post-build copy steps.
* Added zlib 1.2.8 and nufxlib 2.2.2 source snapshots
The old "prebuilts" directory is now gone. The libraries are now
built as part of building the apps.
I added a minimal set of files for zlib, and a full set for nufxlib.
The Linux-specific nufxlib goodies are included for the benefit of
the Linux utilities, which are currently broken (don't build).
* Replace symbols used for include guards
Symbols with a leading "__" are reserved.
2014-11-10 23:32:55 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<ClInclude Include="CP_ntddscsi.h">
|
|
|
|
<Filter>Header Files</Filter>
|
|
|
|
</ClInclude>
|
|
|
|
<ClInclude Include="CP_wnaspi32.h">
|
|
|
|
<Filter>Header Files</Filter>
|
|
|
|
</ClInclude>
|
|
|
|
<ClInclude Include="DiskImg.h">
|
|
|
|
<Filter>Header Files</Filter>
|
|
|
|
</ClInclude>
|
|
|
|
<ClInclude Include="DiskImgDetail.h">
|
|
|
|
<Filter>Header Files</Filter>
|
|
|
|
</ClInclude>
|
|
|
|
<ClInclude Include="DiskImgPriv.h">
|
|
|
|
<Filter>Header Files</Filter>
|
|
|
|
</ClInclude>
|
|
|
|
<ClInclude Include="GenericFD.h">
|
|
|
|
<Filter>Header Files</Filter>
|
|
|
|
</ClInclude>
|
|
|
|
<ClInclude Include="SCSIDefs.h">
|
|
|
|
<Filter>Header Files</Filter>
|
|
|
|
</ClInclude>
|
|
|
|
<ClInclude Include="SPTI.h">
|
|
|
|
<Filter>Header Files</Filter>
|
|
|
|
</ClInclude>
|
|
|
|
<ClInclude Include="StdAfx.h">
|
|
|
|
<Filter>Header Files</Filter>
|
|
|
|
</ClInclude>
|
|
|
|
<ClInclude Include="TwoImg.h">
|
|
|
|
<Filter>Header Files</Filter>
|
|
|
|
</ClInclude>
|
|
|
|
<ClInclude Include="Win32BlockIO.h">
|
|
|
|
<Filter>Header Files</Filter>
|
|
|
|
</ClInclude>
|
|
|
|
<ClInclude Include="Win32Extra.h">
|
|
|
|
<Filter>Header Files</Filter>
|
|
|
|
</ClInclude>
|
|
|
|
</ItemGroup>
|
2014-11-03 22:00:35 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<ClCompile Include="ASPI.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="CFFA.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="Container.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="CPM.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="DDD.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="DiskFS.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="DiskImg.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="DIUtil.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="DOS33.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="DOSImage.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="FAT.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="FDI.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="FocusDrive.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="GenericFD.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="Global.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
Large set of changes to restore CiderPress build.
CiderPress and MDC now compile, and execute far enough to open
their respective "about" boxes, but I doubt they'll do much
more than that.
* Switch from MBCS to UNICODE APIs
Microsoft switched to UTF-16 (by way of UCS-2) a long time ago,
and the support for MBCS seems to be getting phased out. So it's
time to switch to wide strings.
This is a bit awkward for CiderPress because it works with disk
and file archives with 8-bit filenames, and I want NufxLib and
DiskImgLib to continue to work on Linux (which has largely taken
the UTF-8 approach to Unicode). The libraries will continue to
work with 8-bit filenames, with CiderPress/MDC doing the
conversion at the appropriate point.
There were a couple of places where strings from a structure
handed back by one of the libraries were used directly in the UI,
or vice-versa, which is a problem because we have nowhere to
store the result of the conversion. These currently have fixed
place-holder "xyzzy" strings.
All UI strings are now wide.
Various format strings now use "%ls" and "%hs" to explicitly
specify wide and narrow. This doesn't play well with gcc, so
only the Windows-specific parts use those.
* Various updates to vcxproj files
The project-file conversion had some cruft that is now largely
gone. The build now has a common output directory for the EXEs
and libraries, avoiding the old post-build copy steps.
* Added zlib 1.2.8 and nufxlib 2.2.2 source snapshots
The old "prebuilts" directory is now gone. The libraries are now
built as part of building the apps.
I added a minimal set of files for zlib, and a full set for nufxlib.
The Linux-specific nufxlib goodies are included for the benefit of
the Linux utilities, which are currently broken (don't build).
* Replace symbols used for include guards
Symbols with a leading "__" are reserved.
2014-11-10 23:32:55 +00:00
|
|
|
<ClCompile Include="Gutenberg.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
2014-11-03 22:00:35 +00:00
|
|
|
<ClCompile Include="HFS.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="ImageWrapper.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="MacPart.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="MicroDrive.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="Nibble.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="Nibble35.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="OuterWrapper.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="OzDOS.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="Pascal.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="ProDOS.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="RDOS.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="SPTI.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="TwoImg.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="UNIDOS.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="VolumeUsage.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
|
|
|
<ClCompile Include="Win32BlockIO.cpp">
|
|
|
|
<Filter>Source Files</Filter>
|
|
|
|
</ClCompile>
|
Large set of changes to restore CiderPress build.
CiderPress and MDC now compile, and execute far enough to open
their respective "about" boxes, but I doubt they'll do much
more than that.
* Switch from MBCS to UNICODE APIs
Microsoft switched to UTF-16 (by way of UCS-2) a long time ago,
and the support for MBCS seems to be getting phased out. So it's
time to switch to wide strings.
This is a bit awkward for CiderPress because it works with disk
and file archives with 8-bit filenames, and I want NufxLib and
DiskImgLib to continue to work on Linux (which has largely taken
the UTF-8 approach to Unicode). The libraries will continue to
work with 8-bit filenames, with CiderPress/MDC doing the
conversion at the appropriate point.
There were a couple of places where strings from a structure
handed back by one of the libraries were used directly in the UI,
or vice-versa, which is a problem because we have nowhere to
store the result of the conversion. These currently have fixed
place-holder "xyzzy" strings.
All UI strings are now wide.
Various format strings now use "%ls" and "%hs" to explicitly
specify wide and narrow. This doesn't play well with gcc, so
only the Windows-specific parts use those.
* Various updates to vcxproj files
The project-file conversion had some cruft that is now largely
gone. The build now has a common output directory for the EXEs
and libraries, avoiding the old post-build copy steps.
* Added zlib 1.2.8 and nufxlib 2.2.2 source snapshots
The old "prebuilts" directory is now gone. The libraries are now
built as part of building the apps.
I added a minimal set of files for zlib, and a full set for nufxlib.
The Linux-specific nufxlib goodies are included for the benefit of
the Linux utilities, which are currently broken (don't build).
* Replace symbols used for include guards
Symbols with a leading "__" are reserved.
2014-11-10 23:32:55 +00:00
|
|
|
<ClCompile Include="StdAfx.cpp">
|
2014-11-03 22:00:35 +00:00
|
|
|
<Filter>Source Files</Filter>
|
Large set of changes to restore CiderPress build.
CiderPress and MDC now compile, and execute far enough to open
their respective "about" boxes, but I doubt they'll do much
more than that.
* Switch from MBCS to UNICODE APIs
Microsoft switched to UTF-16 (by way of UCS-2) a long time ago,
and the support for MBCS seems to be getting phased out. So it's
time to switch to wide strings.
This is a bit awkward for CiderPress because it works with disk
and file archives with 8-bit filenames, and I want NufxLib and
DiskImgLib to continue to work on Linux (which has largely taken
the UTF-8 approach to Unicode). The libraries will continue to
work with 8-bit filenames, with CiderPress/MDC doing the
conversion at the appropriate point.
There were a couple of places where strings from a structure
handed back by one of the libraries were used directly in the UI,
or vice-versa, which is a problem because we have nowhere to
store the result of the conversion. These currently have fixed
place-holder "xyzzy" strings.
All UI strings are now wide.
Various format strings now use "%ls" and "%hs" to explicitly
specify wide and narrow. This doesn't play well with gcc, so
only the Windows-specific parts use those.
* Various updates to vcxproj files
The project-file conversion had some cruft that is now largely
gone. The build now has a common output directory for the EXEs
and libraries, avoiding the old post-build copy steps.
* Added zlib 1.2.8 and nufxlib 2.2.2 source snapshots
The old "prebuilts" directory is now gone. The libraries are now
built as part of building the apps.
I added a minimal set of files for zlib, and a full set for nufxlib.
The Linux-specific nufxlib goodies are included for the benefit of
the Linux utilities, which are currently broken (don't build).
* Replace symbols used for include guards
Symbols with a leading "__" are reserved.
2014-11-10 23:32:55 +00:00
|
|
|
</ClCompile>
|
2014-11-03 22:00:35 +00:00
|
|
|
</ItemGroup>
|
|
|
|
</Project>
|