mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-12-30 14:31:04 +00:00
d7cc9b5909
* update gsbug.h prototypes and errors based on gsbug and niftylist * updates * remove gsbug 1.7 development error codes
31 lines
798 B
C
31 lines
798 B
C
/********************************************
|
|
; File: GSBug.h
|
|
;
|
|
;
|
|
; Copyright Apple Computer, Inc. 1991
|
|
; All Rights Reserved
|
|
;
|
|
********************************************/
|
|
|
|
#ifndef __TYPES__
|
|
#include <TYPES.h>
|
|
#endif
|
|
|
|
#ifndef __GSBUG__
|
|
#define __GSBUG__
|
|
|
|
/* Error Codes */
|
|
#define debugUnImpErr 0xFF01
|
|
#define debugBadSelErr 0xFF02
|
|
|
|
#define dgiProgramCounter 0 /* for DebugGetInfo */
|
|
|
|
extern pascal Word DebugVersion(void) inline(0x04FF,dispatcher);
|
|
extern pascal Word DebugStatus(void) inline(0x06FF,dispatcher);
|
|
extern pascal void DebugStr(Pointer) inline(0x09FF,dispatcher);
|
|
extern pascal void SetMileStone(Pointer) inline(0x0AFF,dispatcher);
|
|
extern pascal void DebugSetHook(VoidProcPtr) inline(0x0BFF,dispatcher);
|
|
extern pascal LongWord DebugGetInfo(Word) inline(0x0CFF,dispatcher);
|
|
|
|
#endif
|