| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973 |
- {
- File: CarbonCore/Debugging.h
-
- Contains: Macros to handle exceptions and assertions.
- The contents of this header file are deprecated.
-
- Copyright: © 1989-2011 by Apple Inc. All rights reserved.
- }
- {
- Modified for use with Free Pascal
- Version 308
- Please report any bugs to <[email protected]>
- }
- {$ifc not defined MACOSALLINCLUDE or not MACOSALLINCLUDE}
- {$mode macpas}
- {$modeswitch cblocks}
- {$packenum 1}
- {$macro on}
- {$inline on}
- {$calling mwpascal}
- unit Debugging;
- interface
- {$setc UNIVERSAL_INTERFACES_VERSION := $0400}
- {$setc GAP_INTERFACES_VERSION := $0308}
- {$ifc not defined USE_CFSTR_CONSTANT_MACROS}
- {$setc USE_CFSTR_CONSTANT_MACROS := TRUE}
- {$endc}
- {$ifc defined CPUPOWERPC and defined CPUI386}
- {$error Conflicting initial definitions for CPUPOWERPC and CPUI386}
- {$endc}
- {$ifc defined FPC_BIG_ENDIAN and defined FPC_LITTLE_ENDIAN}
- {$error Conflicting initial definitions for FPC_BIG_ENDIAN and FPC_LITTLE_ENDIAN}
- {$endc}
- {$ifc not defined __ppc__ and defined CPUPOWERPC32}
- {$setc __ppc__ := 1}
- {$elsec}
- {$setc __ppc__ := 0}
- {$endc}
- {$ifc not defined __ppc64__ and defined CPUPOWERPC64}
- {$setc __ppc64__ := 1}
- {$elsec}
- {$setc __ppc64__ := 0}
- {$endc}
- {$ifc not defined __i386__ and defined CPUI386}
- {$setc __i386__ := 1}
- {$elsec}
- {$setc __i386__ := 0}
- {$endc}
- {$ifc not defined __x86_64__ and defined CPUX86_64}
- {$setc __x86_64__ := 1}
- {$elsec}
- {$setc __x86_64__ := 0}
- {$endc}
- {$ifc not defined __arm__ and defined CPUARM}
- {$setc __arm__ := 1}
- {$elsec}
- {$setc __arm__ := 0}
- {$endc}
- {$ifc not defined __arm64__ and defined CPUAARCH64}
- {$setc __arm64__ := 1}
- {$elsec}
- {$setc __arm64__ := 0}
- {$endc}
- {$ifc defined cpu64}
- {$setc __LP64__ := 1}
- {$elsec}
- {$setc __LP64__ := 0}
- {$endc}
- {$ifc defined __ppc__ and __ppc__ and defined __i386__ and __i386__}
- {$error Conflicting definitions for __ppc__ and __i386__}
- {$endc}
- {$ifc defined __ppc__ and __ppc__}
- {$setc TARGET_CPU_PPC := TRUE}
- {$setc TARGET_CPU_PPC64 := FALSE}
- {$setc TARGET_CPU_X86 := FALSE}
- {$setc TARGET_CPU_X86_64 := FALSE}
- {$setc TARGET_CPU_ARM := FALSE}
- {$setc TARGET_CPU_ARM64 := FALSE}
- {$setc TARGET_OS_MAC := TRUE}
- {$setc TARGET_OS_IPHONE := FALSE}
- {$setc TARGET_IPHONE_SIMULATOR := FALSE}
- {$setc TARGET_OS_EMBEDDED := FALSE}
- {$elifc defined __ppc64__ and __ppc64__}
- {$setc TARGET_CPU_PPC := FALSE}
- {$setc TARGET_CPU_PPC64 := TRUE}
- {$setc TARGET_CPU_X86 := FALSE}
- {$setc TARGET_CPU_X86_64 := FALSE}
- {$setc TARGET_CPU_ARM := FALSE}
- {$setc TARGET_CPU_ARM64 := FALSE}
- {$setc TARGET_OS_MAC := TRUE}
- {$setc TARGET_OS_IPHONE := FALSE}
- {$setc TARGET_IPHONE_SIMULATOR := FALSE}
- {$setc TARGET_OS_EMBEDDED := FALSE}
- {$elifc defined __i386__ and __i386__}
- {$setc TARGET_CPU_PPC := FALSE}
- {$setc TARGET_CPU_PPC64 := FALSE}
- {$setc TARGET_CPU_X86 := TRUE}
- {$setc TARGET_CPU_X86_64 := FALSE}
- {$setc TARGET_CPU_ARM := FALSE}
- {$setc TARGET_CPU_ARM64 := FALSE}
- {$ifc defined iphonesim}
- {$setc TARGET_OS_MAC := FALSE}
- {$setc TARGET_OS_IPHONE := TRUE}
- {$setc TARGET_IPHONE_SIMULATOR := TRUE}
- {$elsec}
- {$setc TARGET_OS_MAC := TRUE}
- {$setc TARGET_OS_IPHONE := FALSE}
- {$setc TARGET_IPHONE_SIMULATOR := FALSE}
- {$endc}
- {$setc TARGET_OS_EMBEDDED := FALSE}
- {$elifc defined __x86_64__ and __x86_64__}
- {$setc TARGET_CPU_PPC := FALSE}
- {$setc TARGET_CPU_PPC64 := FALSE}
- {$setc TARGET_CPU_X86 := FALSE}
- {$setc TARGET_CPU_X86_64 := TRUE}
- {$setc TARGET_CPU_ARM := FALSE}
- {$setc TARGET_CPU_ARM64 := FALSE}
- {$ifc defined iphonesim}
- {$setc TARGET_OS_MAC := FALSE}
- {$setc TARGET_OS_IPHONE := TRUE}
- {$setc TARGET_IPHONE_SIMULATOR := TRUE}
- {$elsec}
- {$setc TARGET_OS_MAC := TRUE}
- {$setc TARGET_OS_IPHONE := FALSE}
- {$setc TARGET_IPHONE_SIMULATOR := FALSE}
- {$endc}
- {$setc TARGET_OS_EMBEDDED := FALSE}
- {$elifc defined __arm__ and __arm__}
- {$setc TARGET_CPU_PPC := FALSE}
- {$setc TARGET_CPU_PPC64 := FALSE}
- {$setc TARGET_CPU_X86 := FALSE}
- {$setc TARGET_CPU_X86_64 := FALSE}
- {$setc TARGET_CPU_ARM := TRUE}
- {$setc TARGET_CPU_ARM64 := FALSE}
- {$setc TARGET_OS_MAC := FALSE}
- {$setc TARGET_OS_IPHONE := TRUE}
- {$setc TARGET_IPHONE_SIMULATOR := FALSE}
- {$setc TARGET_OS_EMBEDDED := TRUE}
- {$elifc defined __arm64__ and __arm64__}
- {$setc TARGET_CPU_PPC := FALSE}
- {$setc TARGET_CPU_PPC64 := FALSE}
- {$setc TARGET_CPU_X86 := FALSE}
- {$setc TARGET_CPU_X86_64 := FALSE}
- {$setc TARGET_CPU_ARM := FALSE}
- {$setc TARGET_CPU_ARM64 := TRUE}
- {$ifc defined ios}
- {$setc TARGET_OS_MAC := FALSE}
- {$setc TARGET_OS_IPHONE := TRUE}
- {$setc TARGET_OS_EMBEDDED := TRUE}
- {$elsec}
- {$setc TARGET_OS_MAC := TRUE}
- {$setc TARGET_OS_IPHONE := FALSE}
- {$setc TARGET_OS_EMBEDDED := FALSE}
- {$endc}
- {$setc TARGET_IPHONE_SIMULATOR := FALSE}
- {$elsec}
- {$error __ppc__ nor __ppc64__ nor __i386__ nor __x86_64__ nor __arm__ nor __arm64__ is defined.}
- {$endc}
- {$ifc defined __LP64__ and __LP64__ }
- {$setc TARGET_CPU_64 := TRUE}
- {$elsec}
- {$setc TARGET_CPU_64 := FALSE}
- {$endc}
- {$ifc defined FPC_BIG_ENDIAN}
- {$setc TARGET_RT_BIG_ENDIAN := TRUE}
- {$setc TARGET_RT_LITTLE_ENDIAN := FALSE}
- {$elifc defined FPC_LITTLE_ENDIAN}
- {$setc TARGET_RT_BIG_ENDIAN := FALSE}
- {$setc TARGET_RT_LITTLE_ENDIAN := TRUE}
- {$elsec}
- {$error Neither FPC_BIG_ENDIAN nor FPC_LITTLE_ENDIAN are defined.}
- {$endc}
- {$setc ACCESSOR_CALLS_ARE_FUNCTIONS := TRUE}
- {$setc CALL_NOT_IN_CARBON := FALSE}
- {$setc OLDROUTINENAMES := FALSE}
- {$setc OPAQUE_TOOLBOX_STRUCTS := TRUE}
- {$setc OPAQUE_UPP_TYPES := TRUE}
- {$setc OTCARBONAPPLICATION := TRUE}
- {$setc OTKERNEL := FALSE}
- {$setc PM_USE_SESSION_APIS := TRUE}
- {$setc TARGET_API_MAC_CARBON := TRUE}
- {$setc TARGET_API_MAC_OS8 := FALSE}
- {$setc TARGET_API_MAC_OSX := TRUE}
- {$setc TARGET_CARBON := TRUE}
- {$setc TARGET_CPU_68K := FALSE}
- {$setc TARGET_CPU_MIPS := FALSE}
- {$setc TARGET_CPU_SPARC := FALSE}
- {$setc TARGET_OS_UNIX := FALSE}
- {$setc TARGET_OS_WIN32 := FALSE}
- {$setc TARGET_RT_MAC_68881 := FALSE}
- {$setc TARGET_RT_MAC_CFM := FALSE}
- {$setc TARGET_RT_MAC_MACHO := TRUE}
- {$setc TYPED_FUNCTION_POINTERS := TRUE}
- {$setc TYPE_BOOL := FALSE}
- {$setc TYPE_EXTENDED := FALSE}
- {$setc TYPE_LONGLONG := TRUE}
- uses MacTypes;
- {$endc} {not MACOSALLINCLUDE}
- {$ifc TARGET_OS_MAC}
- {$ALIGN POWER}
- {
- This file supplies standard debugging routines and macros to Carbon and
- Classic Mac OS programs. Other C programs which wish to use the
- exception handling and assertion macros should include AssertMacros.h
- instead of this file.
- To activate debugger breaks, #define DEBUG to 1 (one) before including this
- file. Five further levels of debugging are available, selected by #defining
- one of the following conditionals to 1 after DEBUG is defined to 1.
- DEBUG_INTERNAL the default; asserts include file and line number
- information
- DEBUG_EXTERNAL used for code which must ship to developers outside
- your organization; no file or line number
- information is included in asserts
- DEBUG_BREAK_ONLY where an assertion string would normally be sent to
- the debugger; call Debugger() instead.
- PRODUCTION used for shipping code; no debugger breaks are
- emitted
- PERFORMANCE same as PRODUCTION
- #defining DEBUG to 0 is equivalent to #defining PRODUCTION 1 when
- DEBUG is 1. (No code for debugger breaks is emitted in either case.)
-
- #defining DEBUG to 1 without specifying a level is equivalent to #defining
- DEBUG_INTERNAL 1.
- In addition, these macros should also be #defined (they are described in detail below):
- kComponentSignatureString
- COMPONENT_SIGNATURE
- }
- {
- * Before including this file, #define kComponentSignatureString to a C-string
- * containing the name of your client and #define COMPONENT_SIGNATURE to your
- * client's unique signature (i.e., your program's registered creator type).
- * For example:
- *
- * #define kComponentSignatureString "SurfWriter"
- * #define COMPONENT_SIGNATURE 'WAVE'
- *
- * If you don't define kComponentSignatureString and COMPONENT_SIGNATURE, the
- * default kComponentSignatureString and COMPONENT_SIGNATURE values will be
- * used by the DEBUGASSERTMSG macros below.
- }
- {
- * The DEBUGLEVEL's
- }
- const
- DEBUG_LEVEL_PRODUCTION = 0;
- const
- DEBUG_LEVEL_BREAK_ONLY = 1;
- const
- DEBUG_LEVEL_EXTERNAL = 3;
- const
- DEBUG_LEVEL_INTERNAL = 4;
- DEBUGFULL = DEBUG_LEVEL_INTERNAL;
- {
- * define DEBUGLEVEL
- }
- {
- * The options parameter to DebugAssert and DEBUGASSERTMSG is currently reserved (must be zero).
- }
- const
- DEBUG_NO_OPTIONS = 0;
- {
- * DEBUGASSERTMSG()
- *
- * Summary:
- * All error reporting is routed through this macro, which calls the system
- * routine DebugAssert(). If you wish to use your own assertion break
- * routine, you can override DEBUGASSERTMSG by defining it before including
- * this file.
- *
- * Parameters:
- *
- * componentSignature:
- * The unique signature of component causing the assertion.
- *
- * options:
- * reserved.
- *
- * assertionString:
- * A pointer to a string constant containing the assertion.
- * This must be a string constant (and not a string variable or
- * NULL) because the Proeprocessor concatenates it with other
- * string constants
- *
- * exceptionLabelString:
- * A pointer to a string containing the exceptionLabel, or NULL.
- *
- * errorString:
- * A pointer to the error string, or NULL. DEBUGASSERTMSG macros
- * must not attempt to concatenate this string with constant
- * character strings.
- *
- * fileName:
- * A pointer to the fileName or pathname (generated by the
- * preprocessor __FILE__ identifier), or NULL.
- *
- * lineNumber:
- * The line number in the file (generated by the preprocessor
- * __LINE__ identifier), or 0 (zero).
- *
- * value:
- * A value associated with the assertion, or NULL.
- }
- {
- * Define the three inputs to AssertMacros.h
- }
- {
- * Include AssertMacros.h where all of the check, verify, and require macros are defined
- }
- {
- * The following check, verify, and require macros assert that TaskLevel is 0.
- }
- {
- * You can use DPRINTF as a dprintf which goes away in production builds.
- * DPRINTF is not supported by Carbon because dprintf
- * is not supported by Carbon.
- *
- * To use it, double-parenthesize the argument - i.e., use:
- *
- * DPRINTF(("formatString %d", 5 ));
- *
- * This is sadly necessary because a macro can not have a variable number
- * of arguments.
- *
- * DPRINTF is defined only if it is not already defined to
- * prevent conflicts with developer code.
- }
- {
- * kBlessedBusErrorBait is an address that will never be mapped by
- * Mac OS 8 or 9. It is close to the middle of the 64K range from 0x68F10000
- * to 0x68F1FFFF that is unmapped and cannot be accessed without causing an
- * exception. Thus, it's a good value to use for filling uninitialized
- * pointers, etc.
- *
- * Mac OS X programs should NOT use kBlessedBusErrorBait and should use
- * zero (0) instead, since by default, page 0 is read and write protected
- * for user code.
- }
- const
- kBlessedBusErrorBait = $68F168F1;
- {
- * DebugAssert()
- *
- * Summary:
- * DebugAssert is the system routine that the DEBUGASSERTMSG macro
- * calls (by default) to display assertion messsages. The output
- * from DebugAssert can be redirected by installing a
- * DebugAssertOutputHandler with InstallDebugAssertOutputHandler.
- *
- * Mac OS X threading:
- * Thread safe
- * This call is thread safe if no debug components are registered,
- * and may be thread unsafe if there are debug components being
- * installed or removed.
- *
- * Parameters:
- *
- * componentSignature:
- * The unique signature of component causing the assertion.
- *
- * options:
- * reserved.
- *
- * assertionString:
- * A pointer to a string containing the assertion, or NULL.
- *
- * exceptionLabelString:
- * A pointer to a string containing the exceptionLabel, or NULL.
- *
- * errorString:
- * A pointer to the error string, or NULL.
- *
- * fileName:
- * A pointer to the fileName or pathname (generated by the
- * preprocessor __FILE__ identifier), or NULL.
- *
- * lineNumber:
- * The line number in the file (generated by the preprocessor
- * __LINE__ identifier), or 0 (zero).
- *
- * value:
- * A value associated with the assertion, or NULL.
- *
- * Availability:
- * Mac OS X: in version 10.0 and later in CoreServices.framework
- * CarbonLib: in CarbonLib 1.0 and later
- * Non-Carbon CFM: in DebugLib 1.0 and later
- }
- procedure DebugAssert( componentSignature: OSType; options: UInt32; assertionString: ConstCStringPtr; exceptionLabelString: ConstCStringPtr; errorString: ConstCStringPtr; fileName: ConstCStringPtr; lineNumber: SIGNEDLONG; value: UnivPtr ); external name '_DebugAssert';
- (* __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_0, __MAC_10_8, __IPHONE_NA, __IPHONE_NA) *)
- {
- * TaskLevel masks
- }
- const
- k68kInterruptLevelMask = $00000007; { 68K interrupt levels 0 through 7 }
- kInVBLTaskMask = $00000010; { VBLs are executing }
- kInDeferredTaskMask = $00000020; { Deferred tasks are executing }
- kInSecondaryIntHandlerMask = $00000040; { Secondary interrupt handlers are executing }
- kInNestedInterruptMask = $00000080; { The system is handling an interrupt }
- {
- * TaskLevel()
- *
- * Summary:
- * TaskLevel returns 0 if we're (probably) running at non-interrupt
- * time. There's no way to make this perfect, but this is as close
- * as we can get. If TaskLevel doesn't return 0, then one of the
- * TaskLevel masks can be used to learn more. Mac OS X has no
- * concept of "TaskLevel"; and so it will always return the value 0.
- *
- * Mac OS X threading:
- * Thread safe
- *
- * Result:
- * The current task level.
- *
- * Availability:
- * Mac OS X: in version 10.0 and later in CoreServices.framework
- * CarbonLib: in CarbonLib 1.0 and later
- * Non-Carbon CFM: in DebugLib 1.0 and later
- }
- function TaskLevel: UInt32; external name '_TaskLevel';
- (* __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_0, __MAC_10_8, __IPHONE_NA, __IPHONE_NA) *)
- {
- * Constants used by the DebugComponent functions
- }
- const
- kComponentDebugOption = 0; { optionSelectorNum to turn breaks for component On or Off}
- const
- kGetDebugOption = 1; { get current debug option setting}
- kSetDebugOption = 2; { set debug option}
- {
- * DebugComponentCallbackProcPtr
- *
- * Discussion:
- * DebugComponentCallback is the callback into a component that
- * registers with DebugLib. It is called to get the debug option
- * setting, or to turn a debug option on or off.
- *
- * Parameters:
- *
- * optionSelectorNum:
- * The component debug option to set.
- *
- * command:
- * The command the DebugComponentCallbackProc must handle:
- * kGetDebugOption - get current debug option setting
- * kSetDebugOption - set debug option
- *
- * optionSetting:
- * A pointer to a Boolean where the DebugComponentCallbackProc
- * must return the option setting: the current setting if command
- * is kGetDebugOption; the new debug option if command is
- * kSetDebugOption
- }
- type
- DebugComponentCallbackProcPtr = procedure( optionSelectorNum: SInt32; command: UInt32; var optionSetting: Boolean );
- DebugComponentCallbackUPP = DebugComponentCallbackProcPtr;
- {
- * NewDebugComponent()
- *
- * Summary:
- * NewDebugComponent registers a component with DebugLib.
- *
- * Mac OS X threading:
- * Not thread safe
- *
- * Parameters:
- *
- * componentSignature:
- * The unique signature of component.
- *
- * componentName:
- * The displayable string naming the component.
- *
- * componentCallback:
- * The callback into component for working with options.
- *
- * Result:
- * An operating system result code: noErr, memFullErr,
- * debuggingExecutionContextErr, debuggingDuplicateSignatureErr, or
- * debuggingInvalidNameErr.
- *
- * Availability:
- * Mac OS X: in version 10.0 and later in CoreServices.framework
- * CarbonLib: in CarbonLib 1.0 and later
- * Non-Carbon CFM: in DebugLib 1.0 and later
- }
- function NewDebugComponent( componentSignature: OSType; const (*var*) componentName: Str255; componentCallback: DebugComponentCallbackUPP ): OSStatus; external name '_NewDebugComponent';
- (* __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_0, __MAC_10_8, __IPHONE_NA, __IPHONE_NA) *)
- {
- * NewDebugOption()
- *
- * Summary:
- * NewDebugOption registers a debug option with DebugLib.
- *
- * Mac OS X threading:
- * Not thread safe
- *
- * Parameters:
- *
- * componentSignature:
- * The signature of component to register a debug option for.
- *
- * optionSelectorNum:
- * The selector number of this debug option.
- *
- * optionName:
- * The displayable string naming this debug option.
- *
- * Result:
- * An operating system result code: noErr, memFullErr,
- * debuggingExecutionContextErr, debuggingDuplicateOptionErr,
- * debuggingInvalidSignatureErr, debuggingInvalidNameErr, or
- * debuggingNoCallbackErr.
- *
- * Availability:
- * Mac OS X: in version 10.0 and later in CoreServices.framework
- * CarbonLib: in CarbonLib 1.0 and later
- * Non-Carbon CFM: in DebugLib 1.0 and later
- }
- function NewDebugOption( componentSignature: OSType; optionSelectorNum: SInt32; const (*var*) optionName: Str255 ): OSStatus; external name '_NewDebugOption';
- (* __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_0, __MAC_10_8, __IPHONE_NA, __IPHONE_NA) *)
- {
- * DisposeDebugComponent()
- *
- * Summary:
- * DisposeDebugComponent removes a component registration and all
- * related debug options from DebugLib.
- *
- * Mac OS X threading:
- * Not thread safe
- *
- * Parameters:
- *
- * componentSignature:
- * The unique signature of a component.
- *
- * Result:
- * An operating system result code: noErr,
- * debuggingExecutionContextErr, or debuggingInvalidSignatureErr.
- *
- * Availability:
- * Mac OS X: in version 10.0 and later in CoreServices.framework
- * CarbonLib: in CarbonLib 1.0 and later
- * Non-Carbon CFM: in DebugLib 1.0 and later
- }
- function DisposeDebugComponent( componentSignature: OSType ): OSStatus; external name '_DisposeDebugComponent';
- (* __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_0, __MAC_10_8, __IPHONE_NA, __IPHONE_NA) *)
- {
- * GetDebugComponentInfo()
- *
- * Summary:
- * GetDebugComponentInfo returns a component registered with
- * DebugLib.
- *
- * Mac OS X threading:
- * Not thread safe
- *
- * Parameters:
- *
- * itemIndex:
- * The index into the list of registered components (1-based).
- *
- * componentSignature:
- * A pointer to an OSType where the unique signature of a
- * component is returned.
- *
- * componentName:
- * A pointer to an Str255 where the displayable string naming a
- * component is returned.
- *
- * Result:
- * An operating system result code: noErr or debuggingNoMatchErr.
- *
- * Availability:
- * Mac OS X: in version 10.0 and later in CoreServices.framework
- * CarbonLib: in CarbonLib 1.0 and later
- * Non-Carbon CFM: in DebugLib 1.0 and later
- }
- function GetDebugComponentInfo( itemIndex: UInt32; var componentSignature: OSType; var componentName: Str255 ): OSStatus; external name '_GetDebugComponentInfo';
- (* __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_0, __MAC_10_8, __IPHONE_NA, __IPHONE_NA) *)
- {
- * GetDebugOptionInfo()
- *
- * Summary:
- * GetDebugOptionInfo returns a debug option registered with
- * DebugLib.
- *
- * Mac OS X threading:
- * Not thread safe
- *
- * Parameters:
- *
- * itemIndex:
- * The index into the list of registered debug options (0-based);
- * 0 = kComponentDebugOption.
- *
- * componentSignature:
- * The unique signature of a component.
- *
- * optionSelectorNum:
- * A pointer to an SInt32 where the selector number of this debug
- * option is returned.
- *
- * optionName:
- * A pointer to an Str255 where the displayable string naming this
- * debug option is returned.
- *
- * optionSetting:
- * A pointer to an Boolean where the current debug option setting
- * is returned.
- *
- * Result:
- * An operating system result code: noErr,
- * debuggingInvalidSignatureErr, or debuggingNoMatchErr.
- *
- * Availability:
- * Mac OS X: in version 10.0 and later in CoreServices.framework
- * CarbonLib: in CarbonLib 1.0 and later
- * Non-Carbon CFM: in DebugLib 1.0 and later
- }
- function GetDebugOptionInfo( itemIndex: UInt32; componentSignature: OSType; var optionSelectorNum: SInt32; var optionName: Str255; var optionSetting: Boolean ): OSStatus; external name '_GetDebugOptionInfo';
- (* __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_0, __MAC_10_8, __IPHONE_NA, __IPHONE_NA) *)
- {
- * SetDebugOptionValue()
- *
- * Summary:
- * SetDebugOptionValue sets a debug option registered with DebugLib.
- *
- * Mac OS X threading:
- * Not thread safe
- *
- * Parameters:
- *
- * componentSignature:
- * The unique signature of a component.
- *
- * optionSelectorNum:
- * The selector number of this debug option.
- *
- * newOptionSetting:
- * The new debug option setting.
- *
- * Result:
- * An operating system result code: noErr,
- * debuggingInvalidSignatureErr, or debuggingInvalidOptionErr.
- *
- * Availability:
- * Mac OS X: in version 10.0 and later in CoreServices.framework
- * CarbonLib: in CarbonLib 1.0 and later
- * Non-Carbon CFM: in DebugLib 1.0 and later
- }
- function SetDebugOptionValue( componentSignature: OSType; optionSelectorNum: SInt32; newOptionSetting: Boolean ): OSStatus; external name '_SetDebugOptionValue';
- (* __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_0, __MAC_10_8, __IPHONE_NA, __IPHONE_NA) *)
- {
- * DebugAssertOutputHandlerProcPtr
- *
- * Discussion:
- * DebugAssertOutputHandler is the callback that registers with
- * DebugLib to handle the output from DebugAssert. The
- * "componentSignature" through "value" parameters are the raw
- * values passed to DebugAssert when an exception occurs.
- *
- * Parameters:
- *
- * componentSignature:
- * The unique signature of component causing the assertion.
- *
- * options:
- * reserved.
- *
- * assertionString:
- * A pointer to a string containing the assertion, or NULL.
- *
- * exceptionLabelString:
- * A pointer to a string containing the exceptionLabel, or NULL.
- *
- * errorString:
- * A pointer to the error string, or NULL.
- *
- * fileName:
- * A pointer to the fileName or pathname (generated by the
- * preprocessor __FILE__ identifier), or NULL.
- *
- * lineNumber:
- * The line number in the file (generated by the preprocessor
- * __LINE__ identifier), or 0 (zero).
- *
- * value:
- * A value associated with the assertion, or NULL.
- *
- * outputMsg:
- * The string DebugAssert build which would normally be passed to
- * DebugStr if a DebugAssertOutputHandler isn't installed.
- }
- type
- DebugAssertOutputHandlerProcPtr = procedure( componentSignature: OSType; options: UInt32; assertionString: ConstCStringPtr; exceptionLabelString: ConstCStringPtr; errorString: ConstCStringPtr; fileName: ConstCStringPtr; lineNumber: SIGNEDLONG; value: UnivPtr; const (*var*) outputMsg: Str255 );
- DebugAssertOutputHandlerUPP = DebugAssertOutputHandlerProcPtr;
- {
- * InstallDebugAssertOutputHandler()
- *
- * Summary:
- * InstallDebugAssertOutputHandler installs a
- * DebugAssertOutputHandler which DebugAssert calls instead of
- * DebugStr.
- *
- * Parameters:
- *
- * handler:
- * The DebugAssertOutputHandler to install or NULL to switch back
- * to the default handler (DebugStr).
- *
- * Availability:
- * Mac OS X: in version 10.0 and later in CoreServices.framework
- * CarbonLib: in CarbonLib 1.0 and later
- * Non-Carbon CFM: in DebugLib 1.0 and later
- }
- procedure InstallDebugAssertOutputHandler( handler: DebugAssertOutputHandlerUPP ); external name '_InstallDebugAssertOutputHandler';
- (* __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_0, __MAC_10_8, __IPHONE_NA, __IPHONE_NA) *)
- {
- * dprintf()
- *
- * Summary:
- * printf takes a variable argument list and 'prints' that to the
- * debugging output handler. Calling dprintf() from anything but C
- * or C++ is tricky.
- *
- * Parameters:
- *
- * format:
- * The format string.
- *
- * ...:
- * The arguments to the format string.
- *
- * Availability:
- * Mac OS X: not available
- * CarbonLib: not available
- * Non-Carbon CFM: in DebugLib 1.1 and later
- }
- {
- * vdprintf()
- *
- * Summary:
- * vdprintf takes a va_args list and 'prints' that to the debugging
- * output handler.
- *
- * Parameters:
- *
- * format:
- * The format string.
- *
- * va_args_list:
- * The va_args list.
- *
- * Availability:
- * Mac OS X: not available
- * CarbonLib: not available
- * Non-Carbon CFM: in DebugLib 1.1 and later
- }
- {
- * GetMacOSStatusErrorString()
- *
- * Summary:
- * Returns a const char* string which corresponds to the textual
- * constant for the given OSStatus code.
- *
- * Discussion:
- * This function returns a text string which corresponds to the
- * given OSStatus code, based on the errors in MacErrors.h. For
- * example, GetMacOSStatusErrorString( -43 ) returns "fnfErr", which
- * is the text representation for the error constant -43. This
- * function is useful if you want to get or print out ( for
- * debugging purposes only ) a useful description for a given
- * OSStatus error. If no string is available for the given
- * constant, then the empty string "" is returned. Some error values
- * have multiple meanings; in those cases the multiple meanings are
- * all returned seperated by '/'es.
- *
- * Mac OS X threading:
- * Thread safe
- *
- * Parameters:
- *
- * err:
- * The OSStatus to return a text string for.
- *
- * Result:
- * A const char* string corresponding to the given OSStatus
- *
- * Availability:
- * Mac OS X: in version 10.4 and later in CoreServices.framework
- * CarbonLib: not available
- * Non-Carbon CFM: not available
- }
- function GetMacOSStatusErrorString( err: OSStatus ): CStringPtr; external name '_GetMacOSStatusErrorString';
- (* __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_4, __MAC_10_8, __IPHONE_NA, __IPHONE_NA) *)
- {
- * GetMacOSStatusCommentString()
- *
- * Summary:
- * Returns a const char* string which corresponds to the descriptive
- * string for the given OSStatus code.
- *
- * Discussion:
- * This function returns a text string which corresponds to a
- * comment for the given OSStatus code, based on the errors in
- * MacErrors.h. For example, GetMacOSStatusConstantString( -43 )
- * returns "File not found", which is the text representation for
- * the error constant -43. This function is useful if you want to
- * get or print out ( for debugging purposes only ) a useful
- * description for a given OSStatus error. If no string is
- * available for the given constant, then the empty string "" is
- * returned. If no string is available for the given constant, then
- * the empty string "" is returned. Some error values have multiple
- * meanings; in those cases the multiple meanings are all returned
- * seperated by '/'es.
- *
- * Mac OS X threading:
- * Thread safe
- *
- * Parameters:
- *
- * err:
- * The OSStatus to return a text string for.
- *
- * Result:
- * A const char* string corresponding to the given OSStatus
- *
- * Availability:
- * Mac OS X: in version 10.4 and later in CoreServices.framework
- * CarbonLib: not available
- * Non-Carbon CFM: not available
- }
- function GetMacOSStatusCommentString( err: OSStatus ): CStringPtr; external name '_GetMacOSStatusCommentString';
- (* __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_4, __MAC_10_8, __IPHONE_NA, __IPHONE_NA) *)
- {
- pascal < threadsafe, exportset=fw_CarbonCore_XMerlot >
- Boolean IsDebuggerAttachedToProcess ( );
- }
- {
- * NewDebugComponentCallbackUPP()
- *
- * Availability:
- * Mac OS X: in version 10.0 and later in CoreServices.framework
- * CarbonLib: in CarbonLib 1.0 and later
- * Non-Carbon CFM: available as macro/inline
- }
- function NewDebugComponentCallbackUPP( userRoutine: DebugComponentCallbackProcPtr ): DebugComponentCallbackUPP; external name '_NewDebugComponentCallbackUPP';
- (* __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_0, __MAC_10_8, __IPHONE_NA, __IPHONE_NA) *)
- {
- * NewDebugAssertOutputHandlerUPP()
- *
- * Availability:
- * Mac OS X: in version 10.0 and later in CoreServices.framework
- * CarbonLib: in CarbonLib 1.0 and later
- * Non-Carbon CFM: available as macro/inline
- }
- function NewDebugAssertOutputHandlerUPP( userRoutine: DebugAssertOutputHandlerProcPtr ): DebugAssertOutputHandlerUPP; external name '_NewDebugAssertOutputHandlerUPP';
- (* __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_0, __MAC_10_8, __IPHONE_NA, __IPHONE_NA) *)
- {
- * DisposeDebugComponentCallbackUPP()
- *
- * Availability:
- * Mac OS X: in version 10.0 and later in CoreServices.framework
- * CarbonLib: in CarbonLib 1.0 and later
- * Non-Carbon CFM: available as macro/inline
- }
- procedure DisposeDebugComponentCallbackUPP( userUPP: DebugComponentCallbackUPP ); external name '_DisposeDebugComponentCallbackUPP';
- (* __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_0, __MAC_10_8, __IPHONE_NA, __IPHONE_NA) *)
- {
- * DisposeDebugAssertOutputHandlerUPP()
- *
- * Availability:
- * Mac OS X: in version 10.0 and later in CoreServices.framework
- * CarbonLib: in CarbonLib 1.0 and later
- * Non-Carbon CFM: available as macro/inline
- }
- procedure DisposeDebugAssertOutputHandlerUPP( userUPP: DebugAssertOutputHandlerUPP ); external name '_DisposeDebugAssertOutputHandlerUPP';
- (* __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_0, __MAC_10_8, __IPHONE_NA, __IPHONE_NA) *)
- {
- * InvokeDebugComponentCallbackUPP()
- *
- * Availability:
- * Mac OS X: in version 10.0 and later in CoreServices.framework
- * CarbonLib: in CarbonLib 1.0 and later
- * Non-Carbon CFM: available as macro/inline
- }
- procedure InvokeDebugComponentCallbackUPP( optionSelectorNum: SInt32; command: UInt32; var optionSetting: Boolean; userUPP: DebugComponentCallbackUPP ); external name '_InvokeDebugComponentCallbackUPP';
- (* __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_0, __MAC_10_8, __IPHONE_NA, __IPHONE_NA) *)
- {
- * InvokeDebugAssertOutputHandlerUPP()
- *
- * Availability:
- * Mac OS X: in version 10.0 and later in CoreServices.framework
- * CarbonLib: in CarbonLib 1.0 and later
- * Non-Carbon CFM: available as macro/inline
- }
- procedure InvokeDebugAssertOutputHandlerUPP( componentSignature: OSType; options: UInt32; assertionString: ConstCStringPtr; exceptionLabelString: ConstCStringPtr; errorString: ConstCStringPtr; fileName: ConstCStringPtr; lineNumber: SIGNEDLONG; value: UnivPtr; const (*var*) outputMsg: Str255; userUPP: DebugAssertOutputHandlerUPP ); external name '_InvokeDebugAssertOutputHandlerUPP';
- (* __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_0, __MAC_10_8, __IPHONE_NA, __IPHONE_NA) *)
- {$endc} {TARGET_OS_MAC}
- {$ifc not defined MACOSALLINCLUDE or not MACOSALLINCLUDE}
- end.
- {$endc} {not MACOSALLINCLUDE}
|