ported to THINK C (not tested yet)

This commit is contained in:
Guido van Rossum 1995-01-19 00:03:47 +00:00
parent 6a5df90918
commit a42960cd09
3 changed files with 7 additions and 6 deletions

View File

@ -3,12 +3,9 @@
** (and only tested under MetroWerks, so far)
*/
#if defined(MPW) || defined(__MWERKS__)
#include <string.h>
#include <Files.h>
#endif
#ifdef THINK_C_PRE_5_0
#include <HFS.h>
#endif
#include "nfullpath.h"

View File

@ -1 +1 @@
int nfullpath(FSSpec *, char *); /* Generate full path from fsspec */
int nfullpath(FSSpec *, char *); /* Generate full path from fsspec */

View File

@ -32,6 +32,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "nfullpath.h"
#ifdef THINK_C
#define FileFilterUPP FileFilterProcPtr
#endif
static object *ErrorObject;
/* ----------------------------------------------------- */