ciderpress/diskimg/libhfs
Andy McFadden 98f098d421 Half-step toward VS2015 CE
When initially opened in Visual Studio 2015 Community Edition, the
project was updated to use the v140_xp toolset.  When the program
was run under WinXP it complained about a missing runtime DLL.  When
the DLL was provided, it complained about another one (with a
slightly strange name).  So I reverted the tools to v120_xp, i.e.
Visual Studio 2013.  (I don't know if this works because the tools
are included with VS2015, or because I have VS2013 installed and it
managed to find them.)

Whatever the case, it now builds for me with either IDE, and seems
to work fine on Windows XP, but I'd like to figure out why the XP
build isn't working with the v140_xp tools.
2016-01-11 11:33:41 -08:00
..
apple.h initial import 2007-03-27 17:47:10 +00:00
block.c initial import 2007-03-27 17:47:10 +00:00
block.h initial import 2007-03-27 17:47:10 +00:00
btree.c initial import 2007-03-27 17:47:10 +00:00
btree.h initial import 2007-03-27 17:47:10 +00:00
config.h initial import 2007-03-27 17:47:10 +00:00
COPYRIGHT initial import 2007-03-27 17:47:10 +00:00
data.c initial import 2007-03-27 17:47:10 +00:00
data.h initial import 2007-03-27 17:47:10 +00:00
file.c initial import 2007-03-27 17:47:10 +00:00
file.h initial import 2007-03-27 17:47:10 +00:00
hfs.c initial import 2007-03-27 17:47:10 +00:00
hfs.h initial import 2007-03-27 17:47:10 +00:00
libhfs.h initial import 2007-03-27 17:47:10 +00:00
libhfs.vcxproj Half-step toward VS2015 CE 2016-01-11 11:33:41 -08:00
libhfs.vcxproj.filters Large set of changes to restore CiderPress build. 2014-11-16 21:01:53 -08:00
low.c initial import 2007-03-27 17:47:10 +00:00
low.h initial import 2007-03-27 17:47:10 +00:00
Makefile Make gcc happy. 2009-01-03 19:08:48 +00:00
medium.c initial import 2007-03-27 17:47:10 +00:00
medium.h initial import 2007-03-27 17:47:10 +00:00
memcmp.c initial import 2007-03-27 17:47:10 +00:00
node.c initial import 2007-03-27 17:47:10 +00:00
node.h initial import 2007-03-27 17:47:10 +00:00
os.c initial import 2007-03-27 17:47:10 +00:00
os.h initial import 2007-03-27 17:47:10 +00:00
README initial import 2007-03-27 17:47:10 +00:00
record.c initial import 2007-03-27 17:47:10 +00:00
record.h initial import 2007-03-27 17:47:10 +00:00
version.c initial import 2007-03-27 17:47:10 +00:00
version.h initial import 2007-03-27 17:47:10 +00:00
volume.c initial import 2007-03-27 17:47:10 +00:00
volume.h initial import 2007-03-27 17:47:10 +00:00

HFS utility library, part of hfsutils v3.2.6 by Robert Leslie.

Adapted for use with CiderPress by Andy McFadden.  The os_* functions
have been replaced with a callback mechanism, and code that uses global
variables has been (mostly) removed.