/** ** dosmisc.c - miscellaneous functions for DOS ** ** Copyright (C) 2001 Mariano Alvarez Fernandez ** [e-mail: malfer@teleline.es] ** ** This file is part of the GRX graphics library. ** ** The GRX graphics library is free software; you can redistribute it ** and/or modify it under some conditions; see the "copying.grx" file ** for details. ** ** This library is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ** **/ #include #include #include "libgrx.h" void GrSetWindowTitle( char *title ) { } void GrSleep( int msec ) { delay( msec ); } long GrMsecTime( void ) { return (uclock()/(UCLOCKS_PER_SEC/1000)); }