The strutil code has mostly been replaced by the new `PStrBuilder` type,
and the remaining function from strutil was really just a checked memcpy
in one place which is now moved inline.
The `EXIT_ASSERT` macro is obsolete and has been removed.
Previously, various error handling functions were defined, but not all
of them were even used. The new error handling functions handle the most
common cases:
- Assertions. These can be handled with `ASSERT()`, which gives the
error location for debugging.
- Errors we don't know how to handle, like GetNewWindow returning NULL.
These can be handled with `EXIT_INTERNAL()`, which gives the error
location for debugging.
- Out of memory conditions. These can be handled with `ShowMemError()`.
- System errors in response to user operations. These can be handled
with `ShowError()`.
Include paths are updated to include the directory. It seems that
CodeWarrior will search for include files recursively, which means that
"error.h" may resolve to the wrong file (there are two). I am unsure of
the rules CodeWarrior uses to find header files.
Support for older versions of Universal Interfaces has been added.
The project code has been reworked after thoroughly reviewing Inside
Macintosh: Files. It is not complete, but it compiles, and the behavior
of the Save / Save As commands have been thought out more carefully.
The GUI program's project is not checked in. It was compiled and tested
with CodeWarrior Pro 4.
The GUI program allows users to create new synchronization projects,
select folders to synchronize, and save and open projects. The code is
probably broken and buggy, and probably dereferences NULL pointers here
and there, but the basic shell is there.