boot3/OS/SCSIMgr4pt3/SCSIDebug.h
Elliot Nunn 5b0f0cc134 Bring in CubeE sources
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.
2017-12-26 10:02:57 +08:00

73 lines
1.4 KiB
C

/*
File: SCSIDebug.h
Contains: header stuff for various debugging stuff
Written by: Paul Wolf
Copyright: © 1992-1993 by Apple Computer, Inc., all rights reserved.
Change History (most recent first):
<SM4> 11/22/93 pdw Rolling in from <MCxx>.
<SM3> 10/14/93 pdw <MC> roll-in.
<MC2> 9/26/93 pdw Added forIttInit default.
<SM2> 6/29/93 pdw Adding a few and prettying it up a bit.
<1> 5/27/93 PW first checked in
*/
#ifndef __SCSIDebug__
#define __SCSIDebug__ 1
//ÉÉÉÉÉÉ Include_Debugger_Names ÉÉÉÉÉÉ routine names in .a / IfDebugXXX shows up in .c
#ifndef Include_Debugger_Names
#define Include_Debugger_Names 0
#endif
#if Include_Debugger_Names
#define IfDebugger() Debugger()
#define IfDebugStr( a ) DebugStr(a)
#else
#define IfDebugger()
#define IfDebugStr( a )
#endif
//ÉÉÉÉÉÉ forceSyncAlways ÉÉÉÉÉÉ force all IOs to be handled synchronously
#ifndef forceSyncAlways
#define forceSyncAlways 0
#endif
//ÉÉÉÉÉÉ GPHYSICAL ÉÉÉÉÉÉ I don't know what this is
#ifndef GPHYSICAL
#define GPHYSICAL 1
#endif
//ÉÉÉÉÉÉ RECORD_ON ÉÉÉÉÉÉ turns recording of SCSI events on
#ifndef RECORD_ON
#define RECORD_ON 1
#endif
//ÉÉÉÉÉÉ ERR_RECORD_ON ÉÉÉÉÉÉ turns recording of SCSI events on
#ifndef ERR_RECORD_ON
#define ERR_RECORD_ON 1
#endif
//ÉÉÉÉÉÉ forIttInit ÉÉÉÉÉÉ building an Init
#ifndef forIttInit
#define forIttInit 0
#endif
#endif // __SCSIDebug__