home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (C) 1993 Marc Stern (internet: stern@mble.philips.be) */
-
- #define Uses_TApplication
-
- #include "tvtools.h"
- #include <conio.h>
- #include <process.h>
- #include <float.h>
-
-
-
- void appSystem( char *cmd )
-
- {
- TApplication::application->suspend();
- clrscr();
- system( cmd );
- _fpreset(); // To reset math co-processor
- TApplication::application->resume();
- TApplication::application->redraw();
- }
-