MacTypes.h
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:26k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /*
  2.      File:       MacTypes.h
  3.  
  4.      Contains:   Basic Macintosh data types.
  5.  
  6.      Version:    Technology: Mac OS 9
  7.                  Release:    QuickTime 6.0.2
  8.  
  9.      Copyright:  (c) 1985-2001 by Apple Computer, Inc., all rights reserved.
  10.  
  11.      Bugs?:      For bug reports, consult the following page on
  12.                  the World Wide Web:
  13.  
  14.                      http://developer.apple.com/bugreporter/
  15.  
  16. */
  17. #ifndef __MACTYPES__
  18. #define __MACTYPES__
  19. #ifndef __CONDITIONALMACROS__
  20. #include "ConditionalMacros.h"
  21. #endif
  22. #if PRAGMA_ONCE
  23. #pragma once
  24. #endif
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28. #if PRAGMA_IMPORT
  29. #pragma import on
  30. #endif
  31. #if PRAGMA_STRUCT_ALIGN
  32.     #pragma options align=mac68k
  33. #elif PRAGMA_STRUCT_PACKPUSH
  34.     #pragma pack(push, 2)
  35. #elif PRAGMA_STRUCT_PACK
  36.     #pragma pack(2)
  37. #endif
  38. /********************************************************************************
  39.     Special values in C
  40.     
  41.         NULL        The C standard for an impossible pointer value
  42.         nil         A carry over from pascal, NULL is prefered for C
  43.         
  44. *********************************************************************************/
  45. #ifndef NULL
  46.     /* Symantec C compilers (but not C++) want NULL and nil to be (void*)0  */
  47.     #if !defined(__cplusplus) && (defined(__SC__) || defined(THINK_C))
  48.         #define NULL ((void *) 0)
  49.     #else
  50.         #define NULL 0L
  51.     #endif
  52. #endif
  53. #ifndef nil
  54.     #define nil NULL
  55. #endif
  56. /********************************************************************************
  57.     Base integer types for all target OS's and CPU's
  58.     
  59.         UInt8            8-bit unsigned integer 
  60.         SInt8            8-bit signed integer
  61.         UInt16          16-bit unsigned integer 
  62.         SInt16          16-bit signed integer           
  63.         UInt32          32-bit unsigned integer 
  64.         SInt32          32-bit signed integer   
  65.         UInt64          64-bit unsigned integer 
  66.         SInt64          64-bit signed integer   
  67. *********************************************************************************/
  68. typedef unsigned char                   UInt8;
  69. typedef signed char                     SInt8;
  70. typedef unsigned short                  UInt16;
  71. typedef signed short                    SInt16;
  72. typedef unsigned long                   UInt32;
  73. typedef signed long                     SInt32;
  74. #if TARGET_RT_BIG_ENDIAN
  75. struct wide {
  76.     SInt32                          hi;
  77.     UInt32                          lo;
  78. };
  79. typedef struct wide                     wide;
  80. struct UnsignedWide {
  81.     UInt32                          hi;
  82.     UInt32                          lo;
  83. };
  84. typedef struct UnsignedWide             UnsignedWide;
  85. #else
  86. struct wide {
  87.     UInt32                          lo;
  88.     SInt32                          hi;
  89. };
  90. typedef struct wide                     wide;
  91. struct UnsignedWide {
  92.     UInt32                          lo;
  93.     UInt32                          hi;
  94. };
  95. typedef struct UnsignedWide             UnsignedWide;
  96. #endif  /* TARGET_RT_BIG_ENDIAN */
  97. #if TYPE_LONGLONG
  98. /*
  99.   Note:   wide and UnsignedWide must always be structs for source code
  100.            compatibility. On the other hand UInt64 and SInt64 can be
  101.           either a struct or a long long, depending on the compiler.
  102.          
  103.            If you use UInt64 and SInt64 you should do all operations on 
  104.           those data types through the functions/macros in Math64.h.  
  105.            This will assure that your code compiles with compilers that
  106.            support long long and those that don't.
  107.             
  108.            The MS Visual C/C++ compiler uses __int64 instead of long long. 
  109. */
  110.     #if defined(_MSC_VER) && !defined(__MWERKS__) && defined(_M_IX86)
  111.       typedef   signed __int64                SInt64;
  112.         typedef unsigned __int64                UInt64;
  113.     #else
  114.       typedef   signed long long              SInt64;
  115.         typedef unsigned long long              UInt64;
  116.     #endif
  117. #else
  118. typedef wide                            SInt64;
  119. typedef UnsignedWide                    UInt64;
  120. #endif  /* TYPE_LONGLONG */
  121. /********************************************************************************
  122.     Base fixed point types 
  123.     
  124.         Fixed           16-bit signed integer plus 16-bit fraction
  125.         UnsignedFixed   16-bit unsigned integer plus 16-bit fraction
  126.         Fract           2-bit signed integer plus 30-bit fraction
  127.         ShortFixed      8-bit signed integer plus 8-bit fraction
  128.         
  129. *********************************************************************************/
  130. typedef long                            Fixed;
  131. typedef Fixed *                         FixedPtr;
  132. typedef long                            Fract;
  133. typedef Fract *                         FractPtr;
  134. typedef unsigned long                   UnsignedFixed;
  135. typedef UnsignedFixed *                 UnsignedFixedPtr;
  136. typedef short                           ShortFixed;
  137. typedef ShortFixed *                    ShortFixedPtr;
  138. /********************************************************************************
  139.     Base floating point types 
  140.     
  141.         Float32         32 bit IEEE float:  1 sign bit, 8 exponent bits, 23 fraction bits
  142.         Float64         64 bit IEEE float:  1 sign bit, 11 exponent bits, 52 fraction bits  
  143.         Float80         80 bit MacOS float: 1 sign bit, 15 exponent bits, 1 integer bit, 63 fraction bits
  144.         Float96         96 bit 68881 float: 1 sign bit, 15 exponent bits, 16 pad bits, 1 integer bit, 63 fraction bits
  145.         
  146.     Note: These are fixed size floating point types, useful when writing a floating
  147.           point value to disk.  If your compiler does not support a particular size 
  148.           float, a struct is used instead.
  149.           Use of of the NCEG types (e.g. double_t) or an ANSI C type (e.g. double) if
  150.           you want a floating point representation that is natural for any given
  151.           compiler, but might be a different size on different compilers.
  152. *********************************************************************************/
  153. typedef float               Float32;
  154. #if defined(__MWERKS__) || defined(THINK_C)
  155.     typedef short double    Float64;
  156. #else
  157.     typedef double          Float64;
  158. #endif
  159. #if TARGET_CPU_68K
  160.     #if TARGET_RT_MAC_68881
  161.         typedef long double Float96;        
  162.         struct Float80 {
  163.             SInt16  exp;
  164.             UInt16  man[4];
  165.         };
  166.         typedef struct Float80 Float80;
  167.     #else
  168.         typedef long double Float80;        
  169.         struct Float96 {
  170.             SInt16  exp[2];     /* the second 16-bits are undefined */
  171.             UInt16  man[4];
  172.         };
  173.         typedef struct Float96 Float96;
  174.     #endif
  175. #else
  176.     struct Float80 {
  177.         SInt16  exp;
  178.         UInt16  man[4];
  179.     };
  180.     typedef struct Float80 Float80;
  181.     
  182.     struct Float96 {
  183.         SInt16  exp[2];     /* the second 16-bits are undefined */
  184.         UInt16  man[4];
  185.     };
  186.     typedef struct Float96 Float96;
  187. #endif
  188. /********************************************************************************
  189.     MacOS Memory Manager types
  190.     
  191.         Ptr             Pointer to a non-relocatable block
  192.         Handle          Pointer to a master pointer to a relocatable block
  193.         Size            The number of bytes in a block (signed for historical reasons)
  194.         
  195. *********************************************************************************/
  196. typedef char *                          Ptr;
  197. typedef Ptr *                           Handle;
  198. typedef long                            Size;
  199. /********************************************************************************
  200.     Higher level basic types
  201.     
  202.         OSErr                   16-bit result error code
  203.         OSStatus                32-bit result error code
  204.         LogicalAddress          Address in the clients virtual address space
  205.         ConstLogicalAddress     Address in the clients virtual address space that will only be read
  206.         PhysicalAddress         Real address as used on the hardware bus
  207.         BytePtr                 Pointer to an array of bytes
  208.         ByteCount               The size of an array of bytes
  209.         ByteOffset              An offset into an array of bytes
  210.         ItemCount               32-bit iteration count
  211.         OptionBits              Standard 32-bit set of bit flags
  212.         PBVersion               ?
  213.         Duration                32-bit millisecond timer for drivers
  214.         AbsoluteTime            64-bit clock
  215.         ScriptCode              A particular set of written characters (e.g. Roman vs Cyrillic) and their encoding
  216.         LangCode                A particular language (e.g. English), as represented using a particular ScriptCode
  217.         RegionCode              Designates a language as used in a particular region (e.g. British vs American
  218.                                 English) together with other region-dependent characteristics (e.g. date format)
  219.         FourCharCode            A 32-bit value made by packing four 1 byte characters together
  220.         OSType                  A FourCharCode used in the OS and file system (e.g. creator)
  221.         ResType                 A FourCharCode used to tag resources (e.g. 'DLOG')
  222.         
  223. *********************************************************************************/
  224. typedef SInt16                          OSErr;
  225. typedef SInt32                          OSStatus;
  226. typedef void *                          LogicalAddress;
  227. typedef const void *                    ConstLogicalAddress;
  228. typedef void *                          PhysicalAddress;
  229. typedef UInt8 *                         BytePtr;
  230. typedef UInt32                          ByteCount;
  231. typedef UInt32                          ByteOffset;
  232. typedef SInt32                          Duration;
  233. typedef UnsignedWide                    AbsoluteTime;
  234. typedef UInt32                          OptionBits;
  235. typedef UInt32                          ItemCount;
  236. typedef UInt32                          PBVersion;
  237. typedef SInt16                          ScriptCode;
  238. typedef SInt16                          LangCode;
  239. typedef SInt16                          RegionCode;
  240. typedef unsigned long                   FourCharCode;
  241. typedef FourCharCode                    OSType;
  242. typedef FourCharCode                    ResType;
  243. typedef OSType *                        OSTypePtr;
  244. typedef ResType *                       ResTypePtr;
  245. /********************************************************************************
  246.     Boolean types and values
  247.     
  248.         Boolean         A one byte value, holds "false" (0) or "true" (1)
  249.         false           The Boolean value of zero (0)
  250.         true            The Boolean value of one (1)
  251.         
  252. *********************************************************************************/
  253. /*
  254.     The identifiers "true" and "false" are becoming keywords in C++
  255.     and work with the new built-in type "bool"
  256.     "Boolean" will remain an unsigned char for compatibility with source
  257.     code written before "bool" existed.
  258.     */
  259. #if !TYPE_BOOL
  260.     #if TARGET_OS_WIN32
  261.         /* MS VC normally warns if true or false is defined */
  262.         #pragma warning (disable: 4237)
  263.     #endif
  264. enum {
  265.     false                       = 0,
  266.     true                        = 1
  267. };
  268.     #if TARGET_OS_WIN32
  269.         #pragma warning (default: 4237)
  270.     #endif
  271. #endif  /* !TYPE_BOOL */
  272. typedef unsigned char                   Boolean;
  273. /********************************************************************************
  274.     Function Pointer Types
  275.     
  276.         ProcPtr                 Generic pointer to a function
  277.         Register68kProcPtr      Pointer to a 68K function that expects parameters in registers
  278.         UniversalProcPtr        Pointer to classic 68K code or a RoutineDescriptor
  279.         
  280.         ProcHandle              Pointer to a ProcPtr
  281.         UniversalProcHandle     Pointer to a UniversalProcPtr
  282.         
  283. *********************************************************************************/
  284. typedef CALLBACK_API_C( long , ProcPtr )();
  285. typedef CALLBACK_API( void , Register68kProcPtr )();
  286. #if TARGET_OS_MAC && TARGET_RT_MAC_CFM
  287. /*  Note that the RoutineDescriptor structure is defined in the MixedMode.h header */
  288. typedef struct RoutineDescriptor *UniversalProcPtr;
  289. #else
  290. typedef ProcPtr                         UniversalProcPtr;
  291. #endif  /* TARGET_OS_MAC && TARGET_RT_MAC_CFM */
  292. typedef ProcPtr *                       ProcHandle;
  293. typedef UniversalProcPtr *              UniversalProcHandle;
  294. /********************************************************************************
  295.     Common Constants
  296.     
  297.         noErr                   OSErr: function performed properly - no error
  298.         kNilOptions             OptionBits: all flags false
  299.         kInvalidID              KernelID: NULL is for pointers as kInvalidID is for ID's
  300.         kVariableLengthArray    array bounds: variable length array
  301.     Note: kVariableLengthArray is used in array bounds to specify a variable length array.
  302.           It is ususally used in variable length structs when the last field is an array
  303.           of any size.  Before ANSI C, we used zero as the bounds of variable length 
  304.           array, but zero length array are illegal in ANSI C.  Example usage:
  305.     
  306.         struct FooList 
  307.         {
  308.             short   listLength;
  309.             Foo     elements[kVariableLengthArray];
  310.         };
  311.         
  312. *********************************************************************************/
  313. enum {
  314.     noErr                       = 0
  315. };
  316. enum {
  317.     kNilOptions                 = 0
  318. };
  319. #define kInvalidID   0
  320. enum {
  321.     kVariableLengthArray        = 1
  322. };
  323. enum {
  324.     kUnknownType                = 0x3F3F3F3F                    /* '????' QuickTime 3.0: default unknown ResType or OSType */
  325. };
  326. /********************************************************************************
  327.     String Types
  328.     
  329.         UniChar                 A single 16-bit Unicode character
  330.         UniCharCount            A count of Unicode characters in an array or buffer
  331.         StrNNN                  Pascal string holding up to NNN bytes
  332.         StringPtr               Pointer to a pascal string
  333.         StringHandle            Pointer to a StringPtr
  334.         ConstStringPtr          Pointer to a read-only pascal string
  335.         ConstStrNNNParam        For function parameters only - means string is const
  336.         
  337.         CStringPtr              Pointer to a C string           (in C:  char*)
  338.         ConstCStringPtr         Pointer to a read-only C string (in C:  const char*)
  339.         
  340.     Note: The length of a pascal string is stored as the first byte.
  341.           A pascal string does not have a termination byte.
  342.           A pascal string can hold at most 255 bytes of data.
  343.           The first character in a pascal string is offset one byte from the start of the string. 
  344.           
  345.           A C string is terminated with a byte of value zero.  
  346.           A C string has no length limitation.
  347.           The first character in a C string is the zeroth byte of the string. 
  348.           
  349.         
  350. *********************************************************************************/
  351. typedef UInt16                          UniChar;
  352. typedef UniChar *                       UniCharPtr;
  353. typedef UInt32                          UniCharCount;
  354. typedef UniCharCount *                  UniCharCountPtr;
  355. typedef unsigned char                   Str255[256];
  356. typedef unsigned char                   Str63[64];
  357. typedef unsigned char                   Str32[33];
  358. typedef unsigned char                   Str31[32];
  359. typedef unsigned char                   Str27[28];
  360. typedef unsigned char                   Str15[16];
  361. /*
  362.     The type Str32 is used in many AppleTalk based data structures.
  363.     It holds up to 32 one byte chars.  The problem is that with the
  364.     length byte it is 33 bytes long.  This can cause weird alignment
  365.     problems in structures.  To fix this the type "Str32Field" has
  366.     been created.  It should only be used to hold 32 chars, but
  367.     it is 34 bytes long so that there are no alignment problems.
  368. */
  369. typedef unsigned char                   Str32Field[34];
  370. /*
  371.     QuickTime 3.0:
  372.     The type StrFileName is used to make MacOS structs work 
  373.     cross-platform.  For example FSSpec or SFReply previously
  374.     contained a Str63 field.  They now contain a StrFileName
  375.     field which is the same when targeting the MacOS but is
  376.     a 256 char buffer for Win32 and unix, allowing them to
  377.     contain long file names.
  378. */
  379. #if TARGET_OS_MAC
  380. typedef Str63                           StrFileName;
  381. #else
  382. typedef Str255                          StrFileName;
  383. #endif  /* TARGET_OS_MAC */
  384. typedef unsigned char *                 StringPtr;
  385. typedef StringPtr *                     StringHandle;
  386. typedef const unsigned char *           ConstStringPtr;
  387. typedef const unsigned char *           ConstStr255Param;
  388. typedef const unsigned char *           ConstStr63Param;
  389. typedef const unsigned char *           ConstStr32Param;
  390. typedef const unsigned char *           ConstStr31Param;
  391. typedef const unsigned char *           ConstStr27Param;
  392. typedef const unsigned char *           ConstStr15Param;
  393. #if TARGET_OS_MAC
  394. typedef ConstStr63Param                 ConstStrFileNameParam;
  395. #else
  396. typedef ConstStr255Param                ConstStrFileNameParam;
  397. #endif  /* TARGET_OS_MAC */
  398. #ifdef __cplusplus
  399. inline unsigned char StrLength(ConstStr255Param string) { return (*string); }
  400. #else
  401. #define StrLength(string) (*(unsigned char *)(string))
  402. #endif  /* defined(__cplusplus) */
  403. #if OLDROUTINENAMES
  404. #define Length(string) StrLength(string)
  405. #endif  /* OLDROUTINENAMES */
  406. /********************************************************************************
  407.     Quickdraw Types
  408.     
  409.         Point               2D Quickdraw coordinate, range: -32K to +32K
  410.         Rect                Rectangluar Quickdraw area
  411.         Style               Quickdraw font rendering styles
  412.         StyleParameter      Style when used as a parameter (historical 68K convention)
  413.         StyleField          Style when used as a field (historical 68K convention)
  414.         CharParameter       Char when used as a parameter (historical 68K convention)
  415.         
  416.     Note:   The original Macintosh toolbox in 68K Pascal defined Style as a SET.  
  417.             Both Style and CHAR occupy 8-bits in packed records or 16-bits when 
  418.             used as fields in non-packed records or as parameters. 
  419.         
  420. *********************************************************************************/
  421. struct Point {
  422.     short                           v;
  423.     short                           h;
  424. };
  425. typedef struct Point                    Point;
  426. typedef Point *                         PointPtr;
  427. struct Rect {
  428.     short                           top;
  429.     short                           left;
  430.     short                           bottom;
  431.     short                           right;
  432. };
  433. typedef struct Rect                     Rect;
  434. typedef Rect *                          RectPtr;
  435. struct FixedPoint {
  436.     Fixed                           x;
  437.     Fixed                           y;
  438. };
  439. typedef struct FixedPoint               FixedPoint;
  440. struct FixedRect {
  441.     Fixed                           left;
  442.     Fixed                           top;
  443.     Fixed                           right;
  444.     Fixed                           bottom;
  445. };
  446. typedef struct FixedRect                FixedRect;
  447. typedef short                           CharParameter;
  448. enum {
  449.     normal                      = 0,
  450.     bold                        = 1,
  451.     italic                      = 2,
  452.     underline                   = 4,
  453.     outline                     = 8,
  454.     shadow                      = 0x10,
  455.     condense                    = 0x20,
  456.     extend                      = 0x40
  457. };
  458. typedef unsigned char                   Style;
  459. typedef short                           StyleParameter;
  460. typedef Style                           StyleField;
  461. /********************************************************************************
  462.     THINK C base objects
  463.         HandleObject        Root class for handle based THINK C++ objects
  464.         PascalObject        Root class for pascal style objects in THINK C++ 
  465. *********************************************************************************/
  466. #if defined(__SC__) && !defined(__STDC__) && defined(__cplusplus)
  467.         class __machdl HandleObject {};
  468.         #if TARGET_CPU_68K
  469.             class __pasobj PascalObject {};
  470.         #endif
  471. #endif
  472. /********************************************************************************
  473.     MacOS versioning structures
  474.     
  475.         VersRec                 Contents of a 'vers' resource
  476.         VersRecPtr              Pointer to a VersRecPtr
  477.         VersRecHndl             Resource Handle containing a VersRec
  478.         NumVersion              Packed BCD version representation (e.g. "4.2.1a3" is 0x04214003)
  479.         UniversalProcPtr        Pointer to classic 68K code or a RoutineDescriptor
  480.         
  481.         ProcHandle              Pointer to a ProcPtr
  482.         UniversalProcHandle     Pointer to a UniversalProcPtr
  483.         
  484. *********************************************************************************/
  485. #if TARGET_RT_BIG_ENDIAN
  486. struct NumVersion {
  487.                                                                 /* Numeric version part of 'vers' resource */
  488.     UInt8                           majorRev;                   /*1st part of version number in BCD*/
  489.     UInt8                           minorAndBugRev;             /*2nd & 3rd part of version number share a byte*/
  490.     UInt8                           stage;                      /*stage code: dev, alpha, beta, final*/
  491.     UInt8                           nonRelRev;                  /*revision level of non-released version*/
  492. };
  493. typedef struct NumVersion               NumVersion;
  494. #else
  495. struct NumVersion {
  496.                                                                 /* Numeric version part of 'vers' resource accessable in little endian format */
  497.     UInt8                           nonRelRev;                  /*revision level of non-released version*/
  498.     UInt8                           stage;                      /*stage code: dev, alpha, beta, final*/
  499.     UInt8                           minorAndBugRev;             /*2nd & 3rd part of version number share a byte*/
  500.     UInt8                           majorRev;                   /*1st part of version number in BCD*/
  501. };
  502. typedef struct NumVersion               NumVersion;
  503. #endif  /* TARGET_RT_BIG_ENDIAN */
  504. enum {
  505.                                                                 /* Version Release Stage Codes */
  506.     developStage                = 0x20,
  507.     alphaStage                  = 0x40,
  508.     betaStage                   = 0x60,
  509.     finalStage                  = 0x80
  510. };
  511. union NumVersionVariant {
  512.                                                                 /* NumVersionVariant is a wrapper so NumVersion can be accessed as a 32-bit value */
  513.     NumVersion                      parts;
  514.     unsigned long                   whole;
  515. };
  516. typedef union NumVersionVariant         NumVersionVariant;
  517. typedef NumVersionVariant *             NumVersionVariantPtr;
  518. typedef NumVersionVariantPtr *          NumVersionVariantHandle;
  519. struct VersRec {
  520.                                                                 /* 'vers' resource format */
  521.     NumVersion                      numericVersion;             /*encoded version number*/
  522.     short                           countryCode;                /*country code from intl utilities*/
  523.     Str255                          shortVersion;               /*version number string - worst case*/
  524.     Str255                          reserved;                   /*longMessage string packed after shortVersion*/
  525. };
  526. typedef struct VersRec                  VersRec;
  527. typedef VersRec *                       VersRecPtr;
  528. typedef VersRecPtr *                    VersRecHndl;
  529. /*********************************************************************************
  530.     Old names for types
  531.         
  532. *********************************************************************************/
  533. typedef UInt8                           Byte;
  534. typedef SInt8                           SignedByte;
  535. typedef wide *                          WidePtr;
  536. typedef UnsignedWide *                  UnsignedWidePtr;
  537. typedef Float80                         extended80;
  538. typedef Float96                         extended96;
  539. typedef SInt8                           VHSelect;
  540. /*********************************************************************************
  541.     Debugger functions
  542.     
  543. *********************************************************************************/
  544. EXTERN_API( void )
  545. Debugger                        (void)                                                      ONEWORDINLINE(0xA9FF);
  546. EXTERN_API( void )
  547. DebugStr                        (ConstStr255Param       debuggerMsg)                        ONEWORDINLINE(0xABFF);
  548. #if TARGET_OS_MAC
  549. #if CALL_NOT_IN_CARBON
  550. EXTERN_API_C( void )
  551. debugstr                        (const char *           debuggerMsg);
  552. #endif  /* CALL_NOT_IN_CARBON */
  553. #if TARGET_CPU_PPC
  554. /* Only for Mac OS native drivers */
  555. #if CALL_NOT_IN_CARBON
  556. EXTERN_API_C( void )
  557. SysDebug                        (void);
  558. EXTERN_API_C( void )
  559. SysDebugStr                     (ConstStr255Param       str);
  560. #endif  /* CALL_NOT_IN_CARBON */
  561. #endif  /* TARGET_CPU_PPC */
  562. /* SADE break points */
  563. EXTERN_API( void )
  564. SysBreak                        (void)                                                      THREEWORDINLINE(0x303C, 0xFE16, 0xA9C9);
  565. EXTERN_API( void )
  566. SysBreakStr                     (ConstStr255Param       debuggerMsg)                        THREEWORDINLINE(0x303C, 0xFE15, 0xA9C9);
  567. EXTERN_API( void )
  568. SysBreakFunc                    (ConstStr255Param       debuggerMsg)                        THREEWORDINLINE(0x303C, 0xFE14, 0xA9C9);
  569. /* old names for Debugger and DebugStr */
  570. #if OLDROUTINENAMES && TARGET_CPU_68K
  571.     #define Debugger68k()   Debugger()
  572.     #define DebugStr68k(s)  DebugStr(s)
  573. #endif
  574. #endif  /* TARGET_OS_MAC */
  575. #if PRAGMA_STRUCT_ALIGN
  576.     #pragma options align=reset
  577. #elif PRAGMA_STRUCT_PACKPUSH
  578.     #pragma pack(pop)
  579. #elif PRAGMA_STRUCT_PACK
  580.     #pragma pack()
  581. #endif
  582. #ifdef PRAGMA_IMPORT_OFF
  583. #pragma import off
  584. #elif PRAGMA_IMPORT
  585. #pragma import reset
  586. #endif
  587. #ifdef __cplusplus
  588. }
  589. #endif
  590. #endif /* __MACTYPES__ */