mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2025-01-01 11:29:27 +00:00
4325cdcc78
Resource forks are included only for .rsrc files. These are DeRezzed into their data fork. 'ckid' resources, from the Projector VCS, are not included. The Tools directory, containing mostly junk, is also excluded.
30 lines
523 B
C
30 lines
523 B
C
/*
|
|
File: OtherSupport.c
|
|
|
|
Written by: Mark Appleman
|
|
|
|
Copyright: © 1991-1992 by Apple Computer, Inc., all rights reserved.
|
|
|
|
Change History (most recent first):
|
|
|
|
<1> 5/16/92 kc first checked in
|
|
<1> 3/6/92 AL first checked in
|
|
|
|
*/
|
|
//
|
|
// OtherSupport.c
|
|
//
|
|
|
|
#include "CTETypes.h"
|
|
|
|
|
|
//
|
|
// CTEDoIdle()
|
|
//
|
|
void CTEDoIdle(CTEInfo *info)
|
|
{
|
|
void (*idleMethod)(void *idleMethodArg) = info->executionOptions->idleMethod ;
|
|
|
|
if(idleMethod != NULL)
|
|
(*idleMethod)(info->executionOptions->idleMethodArg) ;
|
|
} |