/* * fs primitives to simplify talking to both dos and OS/2 */ #include #include /* * get the current file modes */ USHORT APIENTRY DosQFileMode(PSZ pszFName, PUSHORT pusAttr, ULONG ulReserved) { return _dos_getfileattr(pszFName, pusAttr); } /* fsQfilemode */ /* * set the file modes */ USHORT APIENTRY DosSetFileMode(PSZ pszFName, USHORT usAttr, ULONG ulReserved) { return _dos_setfileattr(pszFName, usAttr); } /* fsSetfilemode */