I looking for code to convert a MacBinaryIII encode file on iOS and Mac OS X. The only two I could find are Christopher Evans MacBinaryIII and Sean Hummels MacBinaryIII OSAX 1.0.1 which both use API that are not available on iOS or the 64-bit Mac OS X Obj-C runtime.
|
|
You're in an unenviable position, having to resurrect code that old to handle an encoding that, well, isn't used that much if at all in these days. Your task is made somewhat easier by needing only the decoding. In Get rid of Get rid of While you've greatly simplified things, you need to convert the code so that it works with file paths rather than those Rename the file with a .m extension rather than .c to handle the Cocoa stuff. For determining if the file is present, you can use For reading the file, you can use And finally, beware of endian issues while performing the byte manipulation. This code was written in the days of 68000 (and descendants) hardware, and PowerPC: big-endian. I wish I had something that I could just drop in your lap, ready to go, but given this particular task, this is all I can offer. Good luck! |
|||
|
|