home *** CD-ROM | disk | FTP | other *** search
- /* CDiagnosticChore - a diagnostic-printing chore. */
-
- #include <TCL>
- #include "GLOBAL.h"
- #include "CDiagnosticChore.h"
- #include "CMIDI.h"
- #include "CDiagnostic.h"
-
- OVERRIDE void CDiagnosticChore::Perform(long *maxSleep)
- {
- gMIDI->StatusCheck(); /* Make sure the MIDI module's tucked in. */
- g_UpdateDiags(); /* in CDiagnostic. */
- *maxSleep = 6L; /* 0.1 sec max. */
- }
-