/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ /* * D_COMMIT.C. * * Written by Peter Sulyok 1995 . * * This file is distributed WITHOUT ANY WARRANTY; without even the implied * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * */ #include #include #include #include unsigned int _dos_commit(int handle) { __dpmi_regs r = {0}; r.h.ah = 0x68; r.x.bx = handle; __dpmi_int(0x21, &r); if ( r.x.flags & 1 ) { errno = __doserr_to_errno(r.x.ax); return r.x.ax; } return 0; }