1 /* Chdir for the Macintosh.
2 Public domain by Guido van Rossum, CWI, Amsterdam (July 1987).
3 Pathnames must be Macintosh paths, with colons as separators. */
7 /* Last directory used by Standard File */
8 #define SFSaveDisk (*(short *)0x214)
9 #define CurDirStore (*(long *)0x398)
11 /* Change current directory. */
19 pb
.ioNamePtr
= (StringPtr
) Pstring(path
);
22 if (PBHSetVol(&pb
, FALSE
) != noErr
) {
26 if (PBHGetVol(&pb
, FALSE
) == noErr
) {
27 /* Set the Standard File directory */
28 SFSaveDisk
= -pb
.ioWDVRefNum
;
29 CurDirStore
= pb
.ioWDDirID
;