mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-26 17:49:21 +00:00
CiderPress Apple II archive utility for Windows
edb7c13120
The OpenImage method had an overload that took void*. This turns out to be a bad idea, because void* matches any pointer type that didn't match something else. So the WCHAR* filenames were going to the "open from buffer" method rather than the "open from file" variant. A less important issue is whether open-from-buffer should take a const or non-const pointer. If the "readOnly" boolean flag is not set, then the contents can be altered and const is inappropriate. The best course seems to be to drop the boolean flag as an argument, and just have two different methods. |
||
---|---|---|
app | ||
diskimg | ||
DIST | ||
linux | ||
mdc | ||
nufxlib | ||
reformat | ||
util | ||
zlib | ||
.gitignore | ||
CP.sln | ||
LICENSE.txt | ||
ReadMe.htm | ||
README.md |
UNDER CONSTRUCTION
I'm in the process of updating CiderPress to work with newer tools (VS 2013) and operating systems.
Current status:
- Win32 main application compiles and can execute basic functions, but there are still big pieces missing.
- MDC application can't get past the initial "choose files" dialog.
- Linux code doesn't compile.
- The web documentation has been moved to github (see the gh-pages branch) and is available from http://a2ciderpress.com/.