mirror of
https://github.com/depp/syncfiles.git
synced 2024-10-31 12:04:44 +00:00
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
|