mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2025-01-14 21:29:53 +00:00
5b0f0cc134
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.
59 lines
1.3 KiB
C
59 lines
1.3 KiB
C
|
|
/************************************************************
|
|
|
|
Created: Saturday, July 27, 1991 at 6:43 PM
|
|
ShutDown.h
|
|
C Interface to the Macintosh Libraries
|
|
|
|
|
|
Copyright Apple Computer, Inc. 1987-1991
|
|
All rights reserved
|
|
This file is used in these builds: Mac32 BigBang Sys606
|
|
|
|
|
|
Change History (most recent first):
|
|
|
|
<5> 7/31/91 JL Updated Copyright.
|
|
<4> 1/27/91 LN Checked in Database generate file from DSG.
|
|
<3> 11/7/90 JL Changed all #defines to anonymous enums.
|
|
|
|
To Do:
|
|
************************************************************/
|
|
|
|
|
|
#ifndef __SHUTDOWN__
|
|
#define __SHUTDOWN__
|
|
|
|
#ifndef __TYPES__
|
|
#include <Types.h>
|
|
#endif
|
|
|
|
|
|
enum {
|
|
|
|
sdOnPowerOff = 1, /*call procedure before power off.*/
|
|
sdOnRestart = 2, /*call procedure before restart.*/
|
|
sdOnUnmount = 4, /*call procedure before unmounting.*/
|
|
sdOnDrivers = 8, /*call procedure before closing drivers.*/
|
|
sdRestartOrPower = 3 /*call before either power off or restart.*/
|
|
};
|
|
|
|
typedef pascal void (*ShutDwnProcPtr)(void);
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
pascal void ShutDwnPower(void)
|
|
= {0x3F3C,0x0001,0xA895};
|
|
pascal void ShutDwnStart(void)
|
|
= {0x3F3C,0x0002,0xA895};
|
|
pascal void ShutDwnInstall(ShutDwnProcPtr shutDownProc,short flags)
|
|
= {0x3F3C,0x0003,0xA895};
|
|
pascal void ShutDwnRemove(ShutDwnProcPtr shutDownProc)
|
|
= {0x3F3C,0x0004,0xA895};
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|