/* Copyright (C) 2001 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 2000 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1998 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1996 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ #include #include #include #include #include #include #include #include int __chdir (const char *mydirname) { __dpmi_regs r; int drv_no = -1; if (mydirname == 0) { errno = EINVAL; return -1; } if (mydirname[0] == 0) { errno = ENOENT; return -1; } _put_path(mydirname); /* _put_path performs some magic conversions of file names, so the path in the transfer buffer can include a drive even though MYDIRNAME doesn't seem to. */ if (_farpeekb(_dos_ds, __tb + 1) == ':') drv_no = (_farpeekb(_dos_ds, __tb) & 0x1f) - 1; if (drv_no != -1) /* Must do this first for Windows 2000 */ { /* Change current drive. The directory change below checks it. */ r.h.ah = 0x0e; r.h.dl = drv_no; __dpmi_int(0x21, &r); } if (drv_no == -1 || _farpeekb(_dos_ds, __tb + 2) != 0) { if(_USE_LFN) r.x.ax = 0x713b; else r.h.ah = 0x3b; r.x.dx = __tb_offset; r.x.ds = __tb_segment; __dpmi_int(0x21, &r); if(r.x.flags & 1) { errno = __doserr_to_errno(r.x.ax); return -1; } } return 0; }