mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2025-01-09 17:30:18 +00:00
30 lines
518 B
C
30 lines
518 B
C
|
/*
|
|||
|
File: OtherSupport.h
|
|||
|
|
|||
|
Written by: Mark Appleman
|
|||
|
|
|||
|
Copyright: <EFBFBD> 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
|
|||
|
|
|||
|
*/
|
|||
|
#ifndef _OtherSupport_
|
|||
|
#define _OtherSupport_
|
|||
|
//
|
|||
|
// OtherSupport.h
|
|||
|
//
|
|||
|
|
|||
|
#ifdef __cplusplus
|
|||
|
extern "C" {
|
|||
|
#endif __cplusplus
|
|||
|
|
|||
|
extern void CTEDoIdle(CTEInfo *info) ;
|
|||
|
|
|||
|
#ifdef __cplusplus
|
|||
|
} // close the extern "C" declaration
|
|||
|
#endif __cplusplus
|
|||
|
|
|||
|
#endif _OtherSupport_
|