syncfiles/macos/tempfile.h
Dietrich Epp 4d4ee214b3 Create classic Mac OS GUI program
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.
2022-04-10 04:09:17 -04:00

9 lines
207 B
C

#ifndef MACOS_TEMPFILE_H
#define MACOS_TEMPFILE_H
// Create a FSSpec for a temporary file on the given volume. Does not actually
// create the file.
OSErr MakeTempFile(short vRefNum, FSSpec *spec);
#endif