mirror of
https://github.com/depp/syncfiles.git
synced 2025-02-22 09:28:58 +00:00
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.
9 lines
192 B
C
9 lines
192 B
C
// path.h - Path manipulation utilities.
|
|
#ifndef MACOS_PATH_H
|
|
#define MACOS_PATH_H
|
|
|
|
// Get the full path to a directory.
|
|
OSErr GetDirPath(FSSpec *spec, int *pathLength, Handle *path);
|
|
|
|
#endif
|