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

多媒体编程

开发平台:

Visual C++

  1. /*
  2.      File:       Gestalt.h
  3.  
  4.      Contains:   Gestalt Interfaces.
  5.  
  6.      Version:    Technology: Mac OS 8.5
  7.                  Release:    QuickTime 6.0.2
  8.  
  9.      Copyright:  (c) 1988-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 __GESTALT__
  18. #define __GESTALT__
  19. #ifndef __MACTYPES__
  20. #include "MacTypes.h"
  21. #endif
  22. #ifndef __MIXEDMODE__
  23. #include "MixedMode.h"
  24. #endif
  25. #if PRAGMA_ONCE
  26. #pragma once
  27. #endif
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif
  31. #if PRAGMA_IMPORT
  32. #pragma import on
  33. #endif
  34. #if PRAGMA_STRUCT_ALIGN
  35.     #pragma options align=mac68k
  36. #elif PRAGMA_STRUCT_PACKPUSH
  37.     #pragma pack(push, 2)
  38. #elif PRAGMA_STRUCT_PACK
  39.     #pragma pack(2)
  40. #endif
  41. typedef CALLBACK_API( OSErr , SelectorFunctionProcPtr )(OSType selector, long *response);
  42. typedef STACK_UPP_TYPE(SelectorFunctionProcPtr)                 SelectorFunctionUPP;
  43.                                                                                             #if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM
  44.                                                                                             #pragma parameter __D0 Gestalt(__D0, __A1)
  45.                                                                                             #endif
  46. EXTERN_API( OSErr )
  47. Gestalt                         (OSType                 selector,
  48.                                  long *                 response)                           TWOWORDINLINE(0xA1AD, 0x2288);
  49.                                                                                             #if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM
  50.                                                                                             #pragma parameter __D0 ReplaceGestalt(__D0, __A0, __A1)
  51.                                                                                             #endif
  52. EXTERN_API( OSErr )
  53. ReplaceGestalt                  (OSType                 selector,
  54.                                  SelectorFunctionUPP    gestaltFunction,
  55.                                  SelectorFunctionUPP *  oldGestaltFunction)                 FOURWORDINLINE(0x2F09, 0xA5AD, 0x225F, 0x2288);
  56.                                                                                             #if TARGET_OS_MAC && TARGET_CPU_68K && !TARGET_RT_MAC_CFM
  57.                                                                                             #pragma parameter __D0 NewGestalt(__D0, __A0)
  58.                                                                                             #endif
  59. EXTERN_API( OSErr )
  60. NewGestalt                      (OSType                 selector,
  61.                                  SelectorFunctionUPP    gestaltFunction)                    ONEWORDINLINE(0xA3AD);
  62. /*  The GestaltValue functions are available in System 7.5 and later*/
  63. EXTERN_API( OSErr )
  64. NewGestaltValue                 (OSType                 selector,
  65.                                  long                   newValue)                           THREEWORDINLINE(0x303C, 0x0401, 0xABF1);
  66. EXTERN_API( OSErr )
  67. ReplaceGestaltValue             (OSType                 selector,
  68.                                  long                   replacementValue)                   THREEWORDINLINE(0x303C, 0x0402, 0xABF1);
  69. EXTERN_API( OSErr )
  70. SetGestaltValue                 (OSType                 selector,
  71.                                  long                   newValue)                           THREEWORDINLINE(0x303C, 0x0404, 0xABF1);
  72. EXTERN_API( OSErr )
  73. DeleteGestaltValue              (OSType                 selector)                           THREEWORDINLINE(0x303C, 0x0203, 0xABF1);
  74. #if OPAQUE_UPP_TYPES
  75.     EXTERN_API(SelectorFunctionUPP)
  76.     NewSelectorFunctionUPP         (SelectorFunctionProcPtr userRoutine);
  77.     EXTERN_API(void)
  78.     DisposeSelectorFunctionUPP     (SelectorFunctionUPP     userUPP);
  79.     EXTERN_API(OSErr)
  80.     InvokeSelectorFunctionUPP      (OSType                  selector,
  81.                                     long *                  response,
  82.                                     SelectorFunctionUPP     userUPP);
  83. #else
  84.     enum { uppSelectorFunctionProcInfo = 0x000003E0 };              /* pascal 2_bytes Func(4_bytes, 4_bytes) */
  85.     #define NewSelectorFunctionUPP(userRoutine)                     (SelectorFunctionUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppSelectorFunctionProcInfo, GetCurrentArchitecture())
  86.     #define DisposeSelectorFunctionUPP(userUPP)                     DisposeRoutineDescriptor(userUPP)
  87.     #define InvokeSelectorFunctionUPP(selector, response, userUPP)  (OSErr)CALL_TWO_PARAMETER_UPP((userUPP), uppSelectorFunctionProcInfo, (selector), (response))
  88. #endif
  89. /* support for pre-Carbon UPP routines: NewXXXProc and CallXXXProc */
  90. #define NewSelectorFunctionProc(userRoutine)                    NewSelectorFunctionUPP(userRoutine)
  91. #define CallSelectorFunctionProc(userRoutine, selector, response) InvokeSelectorFunctionUPP(selector, response, userRoutine)
  92. /* Environment Selectors */
  93. enum {
  94.     gestaltAddressingModeAttr   = FOUR_CHAR_CODE('addr'),       /* addressing mode attributes */
  95.     gestalt32BitAddressing      = 0,                            /* using 32-bit addressing mode */
  96.     gestalt32BitSysZone         = 1,                            /* 32-bit compatible system zone */
  97.     gestalt32BitCapable         = 2                             /* Machine is 32-bit capable */
  98. };
  99. enum {
  100.     gestaltAFPClient            = FOUR_CHAR_CODE('afps'),
  101.     gestaltAFPClientVersionMask = 0x0000FFFF,                   /* low word of long is the */
  102.                                                                 /* client version 0x0001 -> 0x0007*/
  103.     gestaltAFPClient3_5         = 0x0001,
  104.     gestaltAFPClient3_6         = 0x0002,
  105.     gestaltAFPClient3_6_1       = 0x0003,
  106.     gestaltAFPClient3_6_2       = 0x0004,
  107.     gestaltAFPClient3_6_3       = 0x0005,                       /* including 3.6.4, 3.6.5*/
  108.     gestaltAFPClient3_7         = 0x0006,                       /* including 3.7.1*/
  109.     gestaltAFPClient3_7_2       = 0x0007,                       /* including 3.7.3, 3.7.4*/
  110.     gestaltAFPClient3_8         = 0x0008,
  111.     gestaltAFPClient3_8_1       = 0x0009,                       /* including 3.8.2 */
  112.     gestaltAFPClient3_8_3       = 0x000A,
  113.     gestaltAFPClient3_8_4       = 0x000B,                       /* including 3.8.5, 3.8.6 */
  114.     gestaltAFPClientAttributeMask = (long)0xFFFF0000,           /* high word of long is a */
  115.                                                                 /* set of attribute bits*/
  116.     gestaltAFPClientCfgRsrc     = 16,                           /* Client uses config resources*/
  117.     gestaltAFPClientSupportsIP  = 29,                           /* Client supports AFP over TCP/IP*/
  118.     gestaltAFPClientVMUI        = 30,                           /* Client can put up UI from the PBVolMount trap*/
  119.     gestaltAFPClientMultiReq    = 31                            /* Client supports multiple outstanding requests*/
  120. };
  121. enum {
  122.     gestaltAliasMgrAttr         = FOUR_CHAR_CODE('alis'),       /* Alias Mgr Attributes */
  123.     gestaltAliasMgrPresent      = 0,                            /* True if the Alias Mgr is present */
  124.     gestaltAliasMgrSupportsRemoteAppletalk = 1,                 /* True if the Alias Mgr knows about Remote Appletalk */
  125.     gestaltAliasMgrSupportsAOCEKeychain = 2,                    /* True if the Alias Mgr knows about the AOCE Keychain */
  126.     gestaltAliasMgrResolveAliasFileWithMountOptions = 3         /* True if the Alias Mgr implements gestaltAliasMgrResolveAliasFileWithMountOptions() and IsAliasFile() */
  127. };
  128. /* Gestalt selector and values for the Appearance Manager */
  129. enum {
  130.     gestaltAppearanceAttr       = FOUR_CHAR_CODE('appr'),
  131.     gestaltAppearanceExists     = 0,
  132.     gestaltAppearanceCompatMode = 1
  133. };
  134. /* Gestalt selector for determining Appearance Manager version   */
  135. /* If this selector does not exist, but gestaltAppearanceAttr    */
  136. /* does, it indicates that the 1.0 version is installed. This    */
  137. /* gestalt returns a BCD number representing the version of the  */
  138. /* Appearance Manager that is currently running, e.g. 0x0101 for */
  139. /* version 1.0.1.                                                */
  140. enum {
  141.     gestaltAppearanceVersion    = FOUR_CHAR_CODE('apvr')
  142. };
  143. enum {
  144.     gestaltArbitorAttr          = FOUR_CHAR_CODE('arb '),
  145.     gestaltSerialArbitrationExists = 0                          /* this bit if the serial port arbitrator exists*/
  146. };
  147. enum {
  148.     gestaltAppleScriptVersion   = FOUR_CHAR_CODE('ascv')        /* AppleScript version*/
  149. };
  150. enum {
  151.     gestaltAppleScriptAttr      = FOUR_CHAR_CODE('ascr'),       /* AppleScript attributes*/
  152.     gestaltAppleScriptPresent   = 0,
  153.     gestaltAppleScriptPowerPCSupport = 1
  154. };
  155. enum {
  156.     gestaltATAAttr              = FOUR_CHAR_CODE('ata '),       /* ATA is the driver to support IDE hard disks */
  157.     gestaltATAPresent           = 0                             /* if set, ATA Manager is present */
  158. };
  159. enum {
  160.     gestaltATalkVersion         = FOUR_CHAR_CODE('atkv')        /* Detailed AppleTalk version; see comment above for format */
  161. };
  162. enum {
  163.     gestaltAppleTalkVersion     = FOUR_CHAR_CODE('atlk')        /* appletalk version */
  164. };
  165. /*
  166.     FORMAT OF gestaltATalkVersion RESPONSE
  167.     --------------------------------------
  168.     The version is stored in the high three bytes of the response value.  Let us number
  169.     the bytes in the response value from 0 to 3, where 0 is the least-significant byte.
  170.         Byte#:     3 2 1 0
  171.         Value:  0xMMNNRR00
  172.     Byte 3 (MM) contains the major revision number, byte 2 (NN) contains the minor
  173.     revision number, and byte 1 (RR) contains a constant that represents the release
  174.     stage.  Byte 0 always contains 0x00.  The constants for the release stages are:
  175.         development = 0x20
  176.         alpha       = 0x40
  177.         beta        = 0x60
  178.         final       = 0x80
  179.         release     = 0x80
  180.     For example, if you call Gestalt with the 'atkv' selector when AppleTalk version 57
  181.     is loaded, you receive the long integer response value 0x39008000.
  182. */
  183. enum {
  184.     gestaltAUXVersion           = FOUR_CHAR_CODE('a/ux')        /* a/ux version, if present */
  185. };
  186. enum {
  187.     gestaltBusClkSpeed          = FOUR_CHAR_CODE('bclk')        /* main I/O bus clock speed in hertz */
  188. };
  189. enum {
  190.     gestaltCloseViewAttr        = FOUR_CHAR_CODE('BSDa'),       /* CloseView attributes */
  191.     gestaltCloseViewEnabled     = 0,                            /* Closeview enabled (dynamic bit - returns current state) */
  192.     gestaltCloseViewDisplayMgrFriendly = 1                      /* Closeview compatible with Display Manager (FUTURE) */
  193. };
  194. enum {
  195.     gestaltCarbonVersion        = FOUR_CHAR_CODE('cbon')        /* version of Carbon API present in system */
  196. };
  197. enum {
  198.     gestaltCFMAttr              = FOUR_CHAR_CODE('cfrg'),       /* Selector for information about the Code Fragment Manager */
  199.     gestaltCFMPresent           = 0,                            /* True if the Code Fragment Manager is present */
  200.     gestaltCFMPresentMask       = 0x0001,
  201.     gestaltCFM99Present         = 2,                            /* True if the CFM-99 features are present. */
  202.     gestaltCFM99PresentMask     = 0x0004
  203. };
  204. enum {
  205.     gestaltCollectionMgrVersion = FOUR_CHAR_CODE('cltn')        /* Collection Manager version */
  206. };
  207. enum {
  208.     gestaltColorMatchingAttr    = FOUR_CHAR_CODE('cmta'),       /* ColorSync attributes */
  209.     gestaltHighLevelMatching    = 0,
  210.     gestaltColorMatchingLibLoaded = 1
  211. };
  212. enum {
  213.     gestaltColorMatchingVersion = FOUR_CHAR_CODE('cmtc'),
  214.     gestaltColorSync10          = 0x0100,                       /* 0x0100 & 0x0110 _Gestalt versions for 1.0-1.0.3 product */
  215.     gestaltColorSync11          = 0x0110,                       /*   0x0100 == low-level matching only */
  216.     gestaltColorSync104         = 0x0104,                       /* Real version, by popular demand */
  217.     gestaltColorSync105         = 0x0105,
  218.     gestaltColorSync20          = 0x0200,                       /* ColorSync 2.0 */
  219.     gestaltColorSync21          = 0x0210,
  220.     gestaltColorSync211         = 0x0211,
  221.     gestaltColorSync212         = 0x0212,
  222.     gestaltColorSync213         = 0x0213,
  223.     gestaltColorSync25          = 0x0250,
  224.     gestaltColorSync26          = 0x0260,
  225.     gestaltColorSync261         = 0x0261,
  226.     gestaltColorSync30          = 0x0300
  227. };
  228. enum {
  229.     gestaltControlMgrAttr       = FOUR_CHAR_CODE('cntl'),       /* Control Mgr*/
  230.     gestaltControlMgrPresent    = (1L << 0)
  231. };
  232. enum {
  233.     gestaltConnMgrAttr          = FOUR_CHAR_CODE('conn'),       /* connection mgr attributes    */
  234.     gestaltConnMgrPresent       = 0,
  235.     gestaltConnMgrCMSearchFix   = 1,                            /* Fix to CMAddSearch?     */
  236.     gestaltConnMgrErrorString   = 2,                            /* has CMGetErrorString() */
  237.     gestaltConnMgrMultiAsyncIO  = 3                             /* CMNewIOPB, CMDisposeIOPB, CMPBRead, CMPBWrite, CMPBIOKill */
  238. };
  239. enum {
  240.     gestaltColorPickerVersion   = FOUR_CHAR_CODE('cpkr'),       /* returns version of ColorPicker */
  241.     gestaltColorPicker          = FOUR_CHAR_CODE('cpkr')        /* gestaltColorPicker is old name for gestaltColorPickerVersion */
  242. };
  243. enum {
  244.     gestaltComponentMgr         = FOUR_CHAR_CODE('cpnt')        /* Component Mgr version */
  245. };
  246. /*
  247.     The gestaltNativeCPUtype ('cput') selector can be used to determine the
  248.     native CPU type for all Macs running System 7.5 or later.
  249.     The 'cput' selector is not available when running System 7.0 (or earlier)
  250.     on most 68K machines.  If 'cput' is not available, then the 'proc' selector
  251.     should be used to determine the processor type.
  252.     An application should always try the 'cput' selector first.  This is because,
  253.     on PowerPC machines, the 'proc' selector will reflect the CPU type of the
  254.     emulator's "virtual processor" rather than the native CPU type.
  255.     The values specified below are accurate.  Prior versions of the Gestalt
  256.     interface file contained values that were off by one.
  257.     The Quadra 840AV and the Quadra 660AV contain a bug in the ROM code that
  258.     causes the 'cput' selector to respond with the value 5.  This behavior
  259.     occurs only when running System 7.1.  System 7.5 fixes the bug by replacing
  260.     the faulty 'cput' selector function with the correct one.
  261.     The gestaltNativeCPUfamily ('cpuf') selector can be used to determine the
  262.     general family the native CPU is in. This can be helpful for determing how
  263.     blitters and things should be written. In general, it is smarter to use this
  264.     selector (when available) than gestaltNativeCPUtype since newer processors
  265.     in the same family can be handled without revising your code.
  266.     gestaltNativeCPUfamily uses the same results as gestaltNativeCPUtype, but
  267.     will only return certain CPU values.
  268. */
  269. enum {
  270.     gestaltNativeCPUtype        = FOUR_CHAR_CODE('cput'),       /* Native CPU type                          */
  271.     gestaltNativeCPUfamily      = FOUR_CHAR_CODE('cpuf'),       /* Native CPU family                      */
  272.     gestaltCPU68000             = 0,                            /* Various 68k CPUs...    */
  273.     gestaltCPU68010             = 1,
  274.     gestaltCPU68020             = 2,
  275.     gestaltCPU68030             = 3,
  276.     gestaltCPU68040             = 4,
  277.     gestaltCPU601               = 0x0101,                       /* IBM 601                               */
  278.     gestaltCPU603               = 0x0103,
  279.     gestaltCPU604               = 0x0104,
  280.     gestaltCPU603e              = 0x0106,
  281.     gestaltCPU603ev             = 0x0107,
  282.     gestaltCPU750               = 0x0108,                       /* Also 740 - "G3" */
  283.     gestaltCPU604e              = 0x0109,
  284.     gestaltCPU604ev             = 0x010A                        /* Mach 5, 250Mhz and up */
  285. };
  286. #if TARGET_OS_WIN32
  287. enum {
  288.                                                                 /* x86 CPUs all start with 'i' in the high nybble */
  289.     gestaltCPU486               = FOUR_CHAR_CODE('i486'),
  290.     gestaltCPUPentium           = FOUR_CHAR_CODE('i586'),
  291.     gestaltCPUPentiumPro        = FOUR_CHAR_CODE('i5pr'),
  292.     gestaltCPUPentiumII         = FOUR_CHAR_CODE('i5ii'),
  293.     gestaltCPUPentiumIII        = FOUR_CHAR_CODE('i5_3'),
  294.     gestaltCPUPentium4          = FOUR_CHAR_CODE('i5_4'),
  295.     gestaltCPUX86               = FOUR_CHAR_CODE('ixxx')
  296. };
  297. #endif  /* TARGET_OS_WIN32 */
  298. enum {
  299.     gestaltCRMAttr              = FOUR_CHAR_CODE('crm '),       /* comm resource mgr attributes */
  300.     gestaltCRMPresent           = 0,
  301.     gestaltCRMPersistentFix     = 1,                            /* fix for persistent tools */
  302.     gestaltCRMToolRsrcCalls     = 2                             /* has CRMGetToolResource/ReleaseToolResource */
  303. };
  304. enum {
  305.     gestaltControlStripVersion  = FOUR_CHAR_CODE('csvr')        /* Control Strip version (was 'sdvr') */
  306. };
  307. enum {
  308.     gestaltCTBVersion           = FOUR_CHAR_CODE('ctbv')        /* CommToolbox version */
  309. };
  310. enum {
  311.     gestaltDBAccessMgrAttr      = FOUR_CHAR_CODE('dbac'),       /* Database Access Mgr attributes */
  312.     gestaltDBAccessMgrPresent   = 0                             /* True if Database Access Mgr present */
  313. };
  314. enum {
  315.     gestaltSDPFindVersion       = FOUR_CHAR_CODE('dfnd')        /* OCE Standard Directory Panel*/
  316. };
  317. enum {
  318.     gestaltDictionaryMgrAttr    = FOUR_CHAR_CODE('dict'),       /* Dictionary Manager attributes */
  319.     gestaltDictionaryMgrPresent = 0                             /* Dictionary Manager attributes */
  320. };
  321. enum {
  322.     gestaltDITLExtAttr          = FOUR_CHAR_CODE('ditl'),       /* AppenDITL, etc. calls from CTB */
  323.     gestaltDITLExtPresent       = 0,                            /* True if calls are present */
  324.     gestaltDITLExtSupportsIctb  = 1                             /* True if AppendDITL, ShortenDITL support 'ictb's */
  325. };
  326. enum {
  327.     gestaltDialogMgrAttr        = FOUR_CHAR_CODE('dlog'),       /* Dialog Mgr*/
  328.     gestaltDialogMgrPresent     = (1L << 0)
  329. };
  330. enum {
  331.     gestaltDesktopPicturesAttr  = FOUR_CHAR_CODE('dkpx'),       /* Desktop Pictures attributes */
  332.     gestaltDesktopPicturesInstalled = 0,                        /* True if control panel is installed */
  333.     gestaltDesktopPicturesDisplayed = 1                         /* True if a picture is currently displayed */
  334. };
  335. enum {
  336.     gestaltDisplayMgrVers       = FOUR_CHAR_CODE('dplv')        /* Display Manager version */
  337. };
  338. enum {
  339.     gestaltDisplayMgrAttr       = FOUR_CHAR_CODE('dply'),       /* Display Manager attributes */
  340.     gestaltDisplayMgrPresent    = 0,                            /* True if Display Mgr is present */
  341.     gestaltDisplayMgrCanSwitchMirrored = 2,                     /* True if Display Mgr can switch modes on mirrored displays */
  342.     gestaltDisplayMgrSetDepthNotifies = 3,                      /* True SetDepth generates displays mgr notification */
  343.     gestaltDisplayMgrCanConfirm = 4,                            /* True Display Manager supports DMConfirmConfiguration */
  344.     gestaltDisplayMgrColorSyncAware = 5,                        /* True if Display Manager supports profiles for displays */
  345.     gestaltDisplayMgrGeneratesProfiles = 6                      /* True if Display Manager will automatically generate profiles for displays */
  346. };
  347. enum {
  348.     gestaltDragMgrAttr          = FOUR_CHAR_CODE('drag'),       /* Drag Manager attributes */
  349.     gestaltDragMgrPresent       = 0,                            /* Drag Manager is present */
  350.     gestaltDragMgrFloatingWind  = 1,                            /* Drag Manager supports floating windows */
  351.     gestaltPPCDragLibPresent    = 2,                            /* Drag Manager PPC DragLib is present */
  352.     gestaltDragMgrHasImageSupport = 3,                          /* Drag Manager allows SetDragImage call */
  353.     gestaltCanStartDragInFloatWindow = 4                        /* Drag Manager supports starting a drag in a floating window */
  354. };
  355. enum {
  356.     gestaltDigitalSignatureVersion = FOUR_CHAR_CODE('dsig')     /* returns Digital Signature Toolbox version in low-order word*/
  357. };
  358. /*
  359.    Desktop Printing Feature Gestalt
  360.    Use this gestalt to check if third-party printer driver support is available
  361. */
  362. enum {
  363.     gestaltDTPFeatures          = FOUR_CHAR_CODE('dtpf'),
  364.     kDTPThirdPartySupported     = 0x00000004                    /* mask for checking if third-party drivers are supported*/
  365. };
  366. /*
  367.    Desktop Printer Info Gestalt
  368.    Use this gestalt to get a hold of information for all of the active desktop printers
  369. */
  370. enum {
  371.     gestaltDTPInfo              = FOUR_CHAR_CODE('dtpx')        /* returns GestaltDTPInfoHdle*/
  372. };
  373. enum {
  374.     gestaltEasyAccessAttr       = FOUR_CHAR_CODE('easy'),       /* Easy Access attributes */
  375.     gestaltEasyAccessOff        = 0,                            /* if Easy Access present, but off (no icon) */
  376.     gestaltEasyAccessOn         = 1,                            /* if Easy Access "On" */
  377.     gestaltEasyAccessSticky     = 2,                            /* if Easy Access "Sticky" */
  378.     gestaltEasyAccessLocked     = 3                             /* if Easy Access "Locked" */
  379. };
  380. enum {
  381.     gestaltEditionMgrAttr       = FOUR_CHAR_CODE('edtn'),       /* Edition Mgr attributes */
  382.     gestaltEditionMgrPresent    = 0,                            /* True if Edition Mgr present */
  383.     gestaltEditionMgrTranslationAware = 1                       /* True if edition manager is translation manager aware */
  384. };
  385. enum {
  386.     gestaltAppleEventsAttr      = FOUR_CHAR_CODE('evnt'),       /* Apple Events attributes */
  387.     gestaltAppleEventsPresent   = 0,                            /* True if Apple Events present */
  388.     gestaltScriptingSupport     = 1,
  389.     gestaltOSLInSystem          = 2                             /* OSL is in system so don't use the one linked in to app */
  390. };
  391. enum {
  392.     gestaltExtensionTableVersion = FOUR_CHAR_CODE('etbl')       /* ExtensionTable version */
  393. };
  394. enum {
  395.     gestaltFBCIndexingState     = FOUR_CHAR_CODE('fbci'),       /* Find By Content indexing state*/
  396.     gestaltFBCindexingSafe      = 0,                            /* any search will result in synchronous wait*/
  397.     gestaltFBCindexingCritical  = 1                             /* any search will execute immediately*/
  398. };
  399. enum {
  400.     gestaltFBCVersion           = FOUR_CHAR_CODE('fbcv'),       /* Find By Content version*/
  401.     gestaltFBCCurrentVersion    = 0x0011                        /* First release */
  402. };
  403. enum {
  404.     gestaltFloppyAttr           = FOUR_CHAR_CODE('flpy'),       /* Floppy disk drive/driver attributes */
  405.     gestaltFloppyIsMFMOnly      = 0,                            /* Floppy driver only supports MFM disk formats */
  406.     gestaltFloppyIsManualEject  = 1,                            /* Floppy drive, driver, and file system are in manual-eject mode */
  407.     gestaltFloppyUsesDiskInPlace = 2                            /* Floppy drive must have special DISK-IN-PLACE output; standard DISK-CHANGED not used */
  408. };
  409. enum {
  410.     gestaltFinderAttr           = FOUR_CHAR_CODE('fndr'),       /* Finder attributes */
  411.     gestaltFinderDropEvent      = 0,                            /* Finder recognizes drop event */
  412.     gestaltFinderMagicPlacement = 1,                            /* Finder supports magic icon placement */
  413.     gestaltFinderCallsAEProcess = 2,                            /* Finder calls AEProcessAppleEvent */
  414.     gestaltOSLCompliantFinder   = 3,                            /* Finder is scriptable and recordable */
  415.     gestaltFinderSupports4GBVolumes = 4,                        /* Finder correctly handles 4GB volumes */
  416.     gestaltFinderHasClippings   = 6,                            /* Finder supports Drag Manager clipping files */
  417.     gestaltFinderFullDragManagerSupport = 7,                    /* Finder accepts 'hfs ' flavors properly */
  418.     gestaltFinderFloppyRootComments = 8,                        /* in MacOS 8 and later, will be set if Finder ever supports comments on Floppy icons */
  419.     gestaltFinderLargeAndNotSavedFlavorsOK = 9,                 /* in MacOS 8 and later, this bit is set if drags with >1024-byte flavors and flavorNotSaved flavors work reliably */
  420.     gestaltFinderUsesExtensibleFolderManager = 10               /* Finder uses Extensible Folder Manager (for example, for Magic Routing) */
  421. };
  422. enum {
  423.     gestaltFindFolderAttr       = FOUR_CHAR_CODE('fold'),       /* Folder Mgr attributes */
  424.     gestaltFindFolderPresent    = 0                             /* True if Folder Mgr present */
  425. };
  426. enum {
  427.     gestaltFolderDescSupport    = 1,                            /* True if Folder Mgr has FolderDesc calls */
  428.     gestaltFolderMgrFollowsAliasesWhenResolving = 2,            /* True if Folder Mgr follows folder aliases */
  429.     gestaltFolderMgrSupportsExtendedCalls = 3                   /* True if Folder Mgr supports the Extended calls */
  430. };
  431. enum {
  432.     gestaltFindFolderRedirectionAttr = FOUR_CHAR_CODE('fole')
  433. };
  434. enum {
  435.     gestaltFontMgrAttr          = FOUR_CHAR_CODE('font'),       /* Font Mgr attributes */
  436.     gestaltOutlineFonts         = 0                             /* True if Outline Fonts supported */
  437. };
  438. enum {
  439.     gestaltFPUType              = FOUR_CHAR_CODE('fpu '),       /* fpu type */
  440.     gestaltNoFPU                = 0,                            /* no FPU */
  441.     gestalt68881                = 1,                            /* 68881 FPU */
  442.     gestalt68882                = 2,                            /* 68882 FPU */
  443.     gestalt68040FPU             = 3                             /* 68040 built-in FPU */
  444. };
  445. enum {
  446.     gestaltFSAttr               = FOUR_CHAR_CODE('fs  '),       /* file system attributes */
  447.     gestaltFullExtFSDispatching = 0,                            /* has really cool new HFSDispatch dispatcher */
  448.     gestaltHasFSSpecCalls       = 1,                            /* has FSSpec calls */
  449.     gestaltHasFileSystemManager = 2,                            /* has a file system manager */
  450.     gestaltFSMDoesDynamicLoad   = 3,                            /* file system manager supports dynamic loading */
  451.     gestaltFSSupports4GBVols    = 4,                            /* file system supports 4 gigabyte volumes */
  452.     gestaltFSSupports2TBVols    = 5,                            /* file system supports 2 terabyte volumes */
  453.     gestaltHasExtendedDiskInit  = 6,                            /* has extended Disk Initialization calls */
  454.     gestaltDTMgrSupportsFSM     = 7,                            /* Desktop Manager support FSM-based foreign file systems */
  455.     gestaltFSNoMFSVols          = 8,                            /* file system doesn't supports MFS volumes */
  456.     gestaltFSSupportsHFSPlusVols = 9,                           /* file system supports HFS Plus volumes */
  457.     gestaltFSIncompatibleDFA82  = 10                            /* VCB and FCB structures changed; DFA 8.2 is incompatible */
  458. };
  459. enum {
  460.     gestaltHasHFSPlusAPIs       = 12,                           /* file system supports HFS Plus APIs */
  461.     gestaltMustUseFCBAccessors  = 13                            /* FCBSPtr and FSFCBLen are invalid - must use FSM FCB accessor functions*/
  462. };
  463. enum {
  464.     gestaltAdminFeaturesFlagsAttr = FOUR_CHAR_CODE('fred'),     /* a set of admin flags, mostly useful internally. */
  465.     gestaltFinderUsesSpecialOpenFoldersFile = 0                 /* the Finder uses a special file to store the list of open folders */
  466. };
  467. enum {
  468.     gestaltFSMVersion           = FOUR_CHAR_CODE('fsm ')        /* returns version of HFS External File Systems Manager (FSM) */
  469. };
  470. enum {
  471.     gestaltFXfrMgrAttr          = FOUR_CHAR_CODE('fxfr'),       /* file transfer manager attributes */
  472.     gestaltFXfrMgrPresent       = 0,
  473.     gestaltFXfrMgrMultiFile     = 1,                            /* supports FTSend and FTReceive */
  474.     gestaltFXfrMgrErrorString   = 2,                            /* supports FTGetErrorString */
  475.     gestaltFXfrMgrAsync         = 3                             /*supports FTSendAsync, FTReceiveAsync, FTCompletionAsync*/
  476. };
  477. enum {
  478.     gestaltGraphicsAttr         = FOUR_CHAR_CODE('gfxa'),       /* Quickdraw GX attributes selector */
  479.     gestaltGraphicsIsDebugging  = 0x00000001,
  480.     gestaltGraphicsIsLoaded     = 0x00000002,
  481.     gestaltGraphicsIsPowerPC    = 0x00000004
  482. };
  483. enum {
  484.     gestaltGraphicsVersion      = FOUR_CHAR_CODE('grfx'),       /* Quickdraw GX version selector */
  485.     gestaltCurrentGraphicsVersion = 0x00010200                  /* the version described in this set of headers */
  486. };
  487. enum {
  488.     gestaltHardwareAttr         = FOUR_CHAR_CODE('hdwr'),       /* hardware attributes */
  489.     gestaltHasVIA1              = 0,                            /* VIA1 exists */
  490.     gestaltHasVIA2              = 1,                            /* VIA2 exists */
  491.     gestaltHasASC               = 3,                            /* Apple Sound Chip exists */
  492.     gestaltHasSCC               = 4,                            /* SCC exists */
  493.     gestaltHasSCSI              = 7,                            /* SCSI exists */
  494.     gestaltHasSoftPowerOff      = 19,                           /* Capable of software power off */
  495.     gestaltHasSCSI961           = 21,                           /* 53C96 SCSI controller on internal bus */
  496.     gestaltHasSCSI962           = 22,                           /* 53C96 SCSI controller on external bus */
  497.     gestaltHasUniversalROM      = 24,                           /* Do we have a Universal ROM? */
  498.     gestaltHasEnhancedLtalk     = 30                            /* Do we have Enhanced LocalTalk? */
  499. };
  500. enum {
  501.     gestaltHelpMgrAttr          = FOUR_CHAR_CODE('help'),       /* Help Mgr Attributes */
  502.     gestaltHelpMgrPresent       = 0,                            /* true if help mgr is present */
  503.     gestaltHelpMgrExtensions    = 1,                            /* true if help mgr extensions are installed */
  504.     gestaltAppleGuideIsDebug    = 30,
  505.     gestaltAppleGuidePresent    = 31                            /* true if AppleGuide is installed */
  506. };
  507. enum {
  508.     gestaltHardwareVendorCode   = FOUR_CHAR_CODE('hrad'),       /* Returns hardware vendor information */
  509.     gestaltHardwareVendorApple  = FOUR_CHAR_CODE('Appl')        /* Hardware built by Apple */
  510. };
  511. enum {
  512.     gestaltCompressionMgr       = FOUR_CHAR_CODE('icmp')        /* returns version of the Image Compression Manager */
  513. };
  514. enum {
  515.     gestaltIconUtilitiesAttr    = FOUR_CHAR_CODE('icon'),       /* Icon Utilities attributes  (Note: available in System 7.0, despite gestalt) */
  516.     gestaltIconUtilitiesPresent = 0,                            /* true if icon utilities are present */
  517.     gestaltIconUtilitiesHas48PixelIcons = 1,                    /* true if 48x48 icons are supported by IconUtilities */
  518.     gestaltIconUtilitiesHas32BitIcons = 2,                      /* true if 32-bit deep icons are supported */
  519.     gestaltIconUtilitiesHas8BitDeepMasks = 3,                   /* true if 8-bit deep masks are supported */
  520.     gestaltIconUtilitiesHasIconServices = 4                     /* true if IconServices is present */
  521. };
  522. enum {
  523.     gestaltInternalDisplay      = FOUR_CHAR_CODE('idsp')        /* slot number of internal display location */
  524. };
  525. /*
  526.     To obtain information about the connected keyboard(s), one should
  527.     use the ADB Manager API.  See Technical Note OV16 for details.
  528. */
  529. enum {
  530.     gestaltKeyboardType         = FOUR_CHAR_CODE('kbd '),       /* keyboard type */
  531.     gestaltMacKbd               = 1,
  532.     gestaltMacAndPad            = 2,
  533.     gestaltMacPlusKbd           = 3,
  534.     gestaltExtADBKbd            = 4,
  535.     gestaltStdADBKbd            = 5,
  536.     gestaltPrtblADBKbd          = 6,
  537.     gestaltPrtblISOKbd          = 7,
  538.     gestaltStdISOADBKbd         = 8,
  539.     gestaltExtISOADBKbd         = 9,
  540.     gestaltADBKbdII             = 10,
  541.     gestaltADBISOKbdII          = 11,
  542.     gestaltPwrBookADBKbd        = 12,
  543.     gestaltPwrBookISOADBKbd     = 13,
  544.     gestaltAppleAdjustKeypad    = 14,
  545.     gestaltAppleAdjustADBKbd    = 15,
  546.     gestaltAppleAdjustISOKbd    = 16,
  547.     gestaltJapanAdjustADBKbd    = 17,                           /* Japan Adjustable Keyboard */
  548.     gestaltPwrBkExtISOKbd       = 20,                           /* PowerBook Extended International Keyboard with function keys */
  549.     gestaltPwrBkExtJISKbd       = 21,                           /* PowerBook Extended Japanese Keyboard with function keys      */
  550.     gestaltPwrBkExtADBKbd       = 24,                           /* PowerBook Extended Domestic Keyboard with function keys      */
  551.     gestaltPS2Keyboard          = 27,                           /* PS2 keyboard */
  552.     gestaltPwrBkSubDomKbd       = 28,                           /* PowerBook Subnote Domestic Keyboard with function keys w/  inverted T  */
  553.     gestaltPwrBkSubISOKbd       = 29,                           /* PowerBook Subnote International Keyboard with function keys w/  inverted T     */
  554.     gestaltPwrBkSubJISKbd       = 30,                           /* PowerBook Subnote Japanese Keyboard with function keys w/ inverted T    */
  555.     gestaltPwrBkEKDomKbd        = 195,                          /* (0xC3) PowerBook Domestic Keyboard with Embedded Keypad, function keys & inverted T    */
  556.     gestaltPwrBkEKISOKbd        = 196,                          /* (0xC4) PowerBook International Keyboard with Embedded Keypad, function keys & inverted T   */
  557.     gestaltPwrBkEKJISKbd        = 197,                          /* (0xC5) PowerBook Japanese Keyboard with Embedded Keypad, function keys & inverted T      */
  558.     gestaltUSBCosmoANSIKbd      = 198,                          /* (0xC6) Cosmo USB Domestic (ANSI) Keyboard */
  559.     gestaltUSBCosmoISOKbd       = 199,                          /* (0xC7) Cosmo USB International (ISO) Keyboard */
  560.     gestaltUSBCosmoJISKbd       = 200,                          /* (0xC8) Cosmo USB Japanese (JIS) Keyboard */
  561.     gestaltPwrBk99JISKbd        = 201                           /* (0xC9) '99 PowerBook JIS Keyboard with Embedded Keypad, function keys & inverted T     */
  562. };
  563. enum {
  564.     gestaltLowMemorySize        = FOUR_CHAR_CODE('lmem')        /* size of low memory area */
  565. };
  566. enum {
  567.     gestaltLogicalRAMSize       = FOUR_CHAR_CODE('lram')        /* logical ram size */
  568. };
  569. /*
  570.     MACHINE TYPE CONSTANTS NAMING CONVENTION
  571.         All future machine type constant names take the following form:
  572.             gestalt<lineName><modelNumber>
  573.     Line Names
  574.         The following table contains the lines currently produced by Apple and the
  575.         lineName substrings associated with them:
  576.             Line                        lineName
  577.             -------------------------   ------------
  578.             Macintosh LC                "MacLC"
  579.             Macintosh Performa          "Performa"
  580.             Macintosh PowerBook         "PowerBook"
  581.             Macintosh PowerBook Duo     "PowerBookDuo"
  582.             Power Macintosh             "PowerMac"
  583.             Apple Workgroup Server      "AWS"
  584.         The following table contains lineNames for some discontinued lines:
  585.             Line                        lineName
  586.             -------------------------   ------------
  587.             Macintosh Quadra            "MacQuadra" (preferred)
  588.                                         "Quadra" (also used, but not preferred)
  589.             Macintosh Centris           "MacCentris"
  590.     Model Numbers
  591.         The modelNumber is a string representing the specific model of the machine
  592.         within its particular line.  For example, for the Power Macintosh 8100/80,
  593.         the modelNumber is "8100".
  594.         Some Performa & LC model numbers contain variations in the rightmost 1 or 2
  595.         digits to indicate different RAM and Hard Disk configurations.  A single
  596.         machine type is assigned for all variations of a specific model number.  In
  597.         this case, the modelNumber string consists of the constant leftmost part
  598.         of the model number with 0s for the variant digits.  For example, the
  599.         Performa 6115 and Performa 6116 are both return the same machine type
  600.         constant:  gestaltPerforma6100.
  601.     OLD NAMING CONVENTIONS
  602.     The "Underscore Speed" suffix
  603.         In the past, Apple differentiated between machines that had the same model
  604.         number but different speeds.  For example, the Power Macintosh 8100/80 and
  605.         Power Macintosh 8100/100 return different machine type constants.  This is
  606.         why some existing machine type constant names take the form:
  607.             gestalt<lineName><modelNumber>_<speed>
  608.         e.g.
  609.             gestaltPowerMac8100_110
  610.             gestaltPowerMac7100_80
  611.             gestaltPowerMac7100_66
  612.         It is no longer necessary to use the "underscore speed" suffix.  Starting with
  613.         the Power Surge machines (Power Macintosh 7200, 7500, 8500 and 9500), speed is
  614.         no longer used to differentiate between machine types.  This is why a Power
  615.         Macintosh 7200/75 and a Power Macintosh 7200/90 return the same machine type
  616.         constant:  gestaltPowerMac7200.
  617.     The "Screen Type" suffix
  618.         All PowerBook models prior to the PowerBook 190, and all PowerBook Duo models
  619.         before the PowerBook Duo 2300 take the form:
  620.             gestalt<lineName><modelNumber><screenType>
  621.         Where <screenType> is "c" or the empty string.
  622.         e.g.
  623.             gestaltPowerBook100
  624.             gestaltPowerBookDuo280
  625.             gestaltPowerBookDuo280c
  626.             gestaltPowerBook180
  627.             gestaltPowerBook180c
  628.         Starting with the PowerBook 190 series and the PowerBook Duo 2300 series, machine
  629.         types are no longer differentiated based on screen type.  This is why a PowerBook
  630.         5300cs/100 and a PowerBook 5300c/100 both return the same machine type constant:
  631.         gestaltPowerBook5300.
  632.         Macintosh LC 630                gestaltMacLC630
  633.         Macintosh Performa 6200         gestaltPerforma6200
  634.         Macintosh Quadra 700            gestaltQuadra700
  635.         Macintosh PowerBook 5300        gestaltPowerBook5300
  636.         Macintosh PowerBook Duo 2300    gestaltPowerBookDuo2300
  637.         Power Macintosh 8500            gestaltPowerMac8500
  638. */
  639. enum {
  640.     gestaltMachineType          = FOUR_CHAR_CODE('mach'),       /* machine type */
  641.     gestaltClassic              = 1,
  642.     gestaltMacXL                = 2,
  643.     gestaltMac512KE             = 3,
  644.     gestaltMacPlus              = 4,
  645.     gestaltMacSE                = 5,
  646.     gestaltMacII                = 6,
  647.     gestaltMacIIx               = 7,
  648.     gestaltMacIIcx              = 8,
  649.     gestaltMacSE030             = 9,
  650.     gestaltPortable             = 10,
  651.     gestaltMacIIci              = 11,
  652.     gestaltPowerMac8100_120     = 12,
  653.     gestaltMacIIfx              = 13,
  654.     gestaltMacClassic           = 17,
  655.     gestaltMacIIsi              = 18,
  656.     gestaltMacLC                = 19,
  657.     gestaltMacQuadra900         = 20,
  658.     gestaltPowerBook170         = 21,
  659.     gestaltMacQuadra700         = 22,
  660.     gestaltClassicII            = 23,
  661.     gestaltPowerBook100         = 24,
  662.     gestaltPowerBook140         = 25,
  663.     gestaltMacQuadra950         = 26,
  664.     gestaltMacLCIII             = 27,
  665.     gestaltPerforma450          = gestaltMacLCIII,
  666.     gestaltPowerBookDuo210      = 29,
  667.     gestaltMacCentris650        = 30,
  668.     gestaltPowerBookDuo230      = 32,
  669.     gestaltPowerBook180         = 33,
  670.     gestaltPowerBook160         = 34,
  671.     gestaltMacQuadra800         = 35,
  672.     gestaltMacQuadra650         = 36,
  673.     gestaltMacLCII              = 37,
  674.     gestaltPowerBookDuo250      = 38,
  675.     gestaltAWS9150_80           = 39,
  676.     gestaltPowerMac8100_110     = 40,
  677.     gestaltAWS8150_110          = gestaltPowerMac8100_110,
  678.     gestaltPowerMac5200         = 41,
  679.     gestaltPowerMac5260         = gestaltPowerMac5200,
  680.     gestaltPerforma5300         = gestaltPowerMac5200,
  681.     gestaltPowerMac6200         = 42,
  682.     gestaltPerforma6300         = gestaltPowerMac6200,
  683.     gestaltMacIIvi              = 44,
  684.     gestaltMacIIvm              = 45,
  685.     gestaltPerforma600          = gestaltMacIIvm,
  686.     gestaltPowerMac7100_80      = 47,
  687.     gestaltMacIIvx              = 48,
  688.     gestaltMacColorClassic      = 49,
  689.     gestaltPerforma250          = gestaltMacColorClassic,
  690.     gestaltPowerBook165c        = 50,
  691.     gestaltMacCentris610        = 52,
  692.     gestaltMacQuadra610         = 53,
  693.     gestaltPowerBook145         = 54,
  694.     gestaltPowerMac8100_100     = 55,
  695.     gestaltMacLC520             = 56,
  696.     gestaltAWS9150_120          = 57,
  697.     gestaltPowerMac6400         = 58,
  698.     gestaltPerforma6400         = gestaltPowerMac6400,
  699.     gestaltPerforma6360         = gestaltPerforma6400,
  700.     gestaltMacCentris660AV      = 60,
  701.     gestaltMacQuadra660AV       = gestaltMacCentris660AV,
  702.     gestaltPerforma46x          = 62,
  703.     gestaltPowerMac8100_80      = 65,
  704.     gestaltAWS8150_80           = gestaltPowerMac8100_80,
  705.     gestaltPowerMac9500         = 67,
  706.     gestaltPowerMac9600         = gestaltPowerMac9500,
  707.     gestaltPowerMac7500         = 68,
  708.     gestaltPowerMac7600         = gestaltPowerMac7500,
  709.     gestaltPowerMac8500         = 69,
  710.     gestaltPowerMac8600         = gestaltPowerMac8500,
  711.     gestaltAWS8550              = gestaltPowerMac7500,
  712.     gestaltPowerBook180c        = 71,
  713.     gestaltPowerBook520         = 72,
  714.     gestaltPowerBook520c        = gestaltPowerBook520,
  715.     gestaltPowerBook540         = gestaltPowerBook520,
  716.     gestaltPowerBook540c        = gestaltPowerBook520,
  717.     gestaltPowerMac5400         = 74,
  718.     gestaltPowerMac6100_60      = 75,
  719.     gestaltAWS6150_60           = gestaltPowerMac6100_60,
  720.     gestaltPowerBookDuo270c     = 77,
  721.     gestaltMacQuadra840AV       = 78,
  722.     gestaltPerforma550          = 80,
  723.     gestaltPowerBook165         = 84,
  724.     gestaltPowerBook190         = 85,
  725.     gestaltMacTV                = 88,
  726.     gestaltMacLC475             = 89,
  727.     gestaltPerforma47x          = gestaltMacLC475,
  728.     gestaltMacLC575             = 92,
  729.     gestaltMacQuadra605         = 94,
  730.     gestaltMacQuadra630         = 98,
  731.     gestaltMacLC580             = 99,
  732.     gestaltPerforma580          = gestaltMacLC580,
  733.     gestaltPowerMac6100_66      = 100,
  734.     gestaltAWS6150_66           = gestaltPowerMac6100_66,
  735.     gestaltPowerBookDuo280      = 102,
  736.     gestaltPowerBookDuo280c     = 103,
  737.     gestaltPowerMacLC475        = 104,                          /* Mac LC 475 & PPC Processor Upgrade Card*/
  738.     gestaltPowerMacPerforma47x  = gestaltPowerMacLC475,
  739.     gestaltPowerMacLC575        = 105,                          /* Mac LC 575 & PPC Processor Upgrade Card */
  740.     gestaltPowerMacPerforma57x  = gestaltPowerMacLC575,
  741.     gestaltPowerMacQuadra630    = 106,                          /* Quadra 630 & PPC Processor Upgrade Card*/
  742.     gestaltPowerMacLC630        = gestaltPowerMacQuadra630,     /* Mac LC 630 & PPC Processor Upgrade Card*/
  743.     gestaltPowerMacPerforma63x  = gestaltPowerMacQuadra630,     /* Performa 63x & PPC Processor Upgrade Card*/
  744.     gestaltPowerMac7200         = 108,
  745.     gestaltPowerMac7300         = 109,
  746.     gestaltPowerMac7100_66      = 112,
  747.     gestaltPowerBook150         = 115,
  748.     gestaltPowerMacQuadra700    = 116,                          /* Quadra 700 & Power PC Upgrade Card*/
  749.     gestaltPowerMacQuadra900    = 117,                          /* Quadra 900 & Power PC Upgrade Card */
  750.     gestaltPowerMacQuadra950    = 118,                          /* Quadra 950 & Power PC Upgrade Card */
  751.     gestaltPowerMacCentris610   = 119,                          /* Centris 610 & Power PC Upgrade Card */
  752.     gestaltPowerMacCentris650   = 120,                          /* Centris 650 & Power PC Upgrade Card */
  753.     gestaltPowerMacQuadra610    = 121,                          /* Quadra 610 & Power PC Upgrade Card */
  754.     gestaltPowerMacQuadra650    = 122,                          /* Quadra 650 & Power PC Upgrade Card */
  755.     gestaltPowerMacQuadra800    = 123,                          /* Quadra 800 & Power PC Upgrade Card */
  756.     gestaltPowerBookDuo2300     = 124,
  757.     gestaltPowerBook500PPCUpgrade = 126,
  758.     gestaltPowerBook5300        = 128,
  759.     gestaltPowerBook1400        = 310,
  760.     gestaltPowerBook3400        = 306,
  761.     gestaltPowerBook2400        = 307,
  762.     gestaltPowerBookG3Series    = 312,
  763.     gestaltPowerBookG3          = 313,
  764.     gestaltPowerBookG3Series2   = 314,
  765.     gestaltPowerMacNewWorld     = 406,                          /* All NewWorld architecture Macs (iMac, blue G3, etc.)*/
  766.     gestaltPowerMacG3           = 510,
  767.     gestaltPowerMac5500         = 512,
  768.     gestalt20thAnniversary      = gestaltPowerMac5500,
  769.     gestaltPowerMac6500         = 513,
  770.     gestaltPowerMac4400_160     = 514,                          /* slower machine has different machine ID*/
  771.     gestaltPowerMac4400         = 515
  772. };
  773. enum {
  774.     gestaltQuadra605            = gestaltMacQuadra605,
  775.     gestaltQuadra610            = gestaltMacQuadra610,
  776.     gestaltQuadra630            = gestaltMacQuadra630,
  777.     gestaltQuadra650            = gestaltMacQuadra650,
  778.     gestaltQuadra660AV          = gestaltMacQuadra660AV,
  779.     gestaltQuadra700            = gestaltMacQuadra700,
  780.     gestaltQuadra800            = gestaltMacQuadra800,
  781.     gestaltQuadra840AV          = gestaltMacQuadra840AV,
  782.     gestaltQuadra900            = gestaltMacQuadra900,
  783.     gestaltQuadra950            = gestaltMacQuadra950
  784. };
  785. enum {
  786.     kMachineNameStrID           = -16395
  787. };
  788. enum {
  789.     gestaltSMPMailerVersion     = FOUR_CHAR_CODE('malr')        /* OCE StandardMail*/
  790. };
  791. enum {
  792.     gestaltMediaBay             = FOUR_CHAR_CODE('mbeh'),       /* media bay driver type */
  793.     gestaltMBLegacy             = 0,                            /* media bay support in PCCard 2.0 */
  794.     gestaltMBSingleBay          = 1,                            /* single bay media bay driver */
  795.     gestaltMBMultipleBays       = 2                             /* multi-bay media bay driver */
  796. };
  797. enum {
  798.     gestaltMessageMgrVersion    = FOUR_CHAR_CODE('mess')        /* GX Printing Message Manager Gestalt Selector */
  799. };
  800. /*  Menu Manager Geslalt (Mac OS 8.5 and later)*/
  801. enum {
  802.     gestaltMenuMgrAttr          = FOUR_CHAR_CODE('menu'),       /* If this Gestalt exists, the Mac OS 8.5 Menu Manager is installed */
  803.     gestaltMenuMgrPresent       = (1L << 0),                    /* NOTE: this is a bit mask, where all other Gestalt constants of this nature */
  804.                                                                 /* are bit index values. 3.2 interfaces slipped out with this mistake unnoticed. */
  805.                                                                 /* Sincere apologies for any inconvenience. */
  806.     gestaltMenuMgrPresentMask   = (1L << 0),                    /* bit mask */
  807.     gestaltMenuMgrPresentBit    = 0                             /* bit number */
  808. };
  809. enum {
  810.     gestaltMultipleUsersState   = FOUR_CHAR_CODE('mfdr')        /* Gestalt selector returns MultiUserGestaltHandle (in Folders.h)*/
  811. };
  812. enum {
  813.     gestaltMachineIcon          = FOUR_CHAR_CODE('micn')        /* machine icon */
  814. };
  815. enum {
  816.     gestaltMiscAttr             = FOUR_CHAR_CODE('misc'),       /* miscellaneous attributes */
  817.     gestaltScrollingThrottle    = 0,                            /* true if scrolling throttle on */
  818.     gestaltSquareMenuBar        = 2                             /* true if menu bar is square */
  819. };
  820. /*
  821.     The name gestaltMixedModeVersion for the 'mixd' selector is semantically incorrect.
  822.     The same selector has been renamed gestaltMixedModeAttr to properly reflect the
  823.     Inside Mac: PowerPC System Software documentation.  The gestaltMixedModeVersion
  824.     symbol has been preserved only for backwards compatibility.
  825.     Developers are forewarned that gestaltMixedModeVersion has a limited lifespan and
  826.     will be removed in a future release of the Interfaces.
  827.     For the first version of Mixed Mode, both meanings of the 'mixd' selector are
  828.     functionally identical.  They both return 0x00000001.  In subsequent versions
  829.     of Mixed Mode, however, the 'mixd' selector will not respond with an increasing
  830.     version number, but rather, with 32 attribute bits with various meanings.
  831. */
  832. enum {
  833.     gestaltMixedModeVersion     = FOUR_CHAR_CODE('mixd')        /* returns version of Mixed Mode */
  834. };
  835. enum {
  836.     gestaltMixedModeAttr        = FOUR_CHAR_CODE('mixd'),       /* returns Mixed Mode attributes */
  837.     gestaltMixedModePowerPC     = 0,                            /* true if Mixed Mode supports PowerPC ABI calling conventions */
  838.     gestaltPowerPCAware         = 0,                            /* old name for gestaltMixedModePowerPC */
  839.     gestaltMixedModeCFM68K      = 1,                            /* true if Mixed Mode supports CFM-68K calling conventions */
  840.     gestaltMixedModeCFM68KHasTrap = 2,                          /* true if CFM-68K Mixed Mode implements _MixedModeDispatch (versions 1.0.1 and prior did not) */
  841.     gestaltMixedModeCFM68KHasState = 3                          /* true if CFM-68K Mixed Mode exports Save/RestoreMixedModeState */
  842. };
  843. enum {
  844.     gestaltQuickTimeConferencing = FOUR_CHAR_CODE('mtlk')       /* returns QuickTime Conferencing version */
  845. };
  846. enum {
  847.     gestaltMemoryMapAttr        = FOUR_CHAR_CODE('mmap'),       /* Memory map type */
  848.     gestaltMemoryMapSparse      = 0                             /* Sparse memory is on */
  849. };
  850. enum {
  851.     gestaltMMUType              = FOUR_CHAR_CODE('mmu '),       /* mmu type */
  852.     gestaltNoMMU                = 0,                            /* no MMU */
  853.     gestaltAMU                  = 1,                            /* address management unit */
  854.     gestalt68851                = 2,                            /* 68851 PMMU */
  855.     gestalt68030MMU             = 3,                            /* 68030 built-in MMU */
  856.     gestalt68040MMU             = 4,                            /* 68040 built-in MMU */
  857.     gestaltEMMU1                = 5                             /* Emulated MMU type 1  */
  858. };
  859. enum {
  860.     gestaltUserVisibleMachineName = FOUR_CHAR_CODE('mnam')      /* Coerce response into a StringPtr to get a user visible machine name */
  861. };
  862. enum {
  863.     gestaltMPCallableAPIsAttr   = FOUR_CHAR_CODE('mpsc'),       /* Bitmap of toolbox/OS managers that can be called from MPLibrary MPTasks */
  864.     gestaltMPFileManager        = 0,                            /* True if File Manager calls can be made from MPTasks */
  865.     gestaltMPDeviceManager      = 1                             /* True if synchronous Device Manager calls can be made from MPTasks */
  866. };
  867. enum {
  868.     gestaltStdNBPAttr           = FOUR_CHAR_CODE('nlup'),       /* standard nbp attributes */
  869.     gestaltStdNBPPresent        = 0,
  870.     gestaltStdNBPSupportsAutoPosition = 1                       /* StandardNBP takes (-1,-1) to mean alert position main screen */
  871. };
  872. enum {
  873.     gestaltNotificationMgrAttr  = FOUR_CHAR_CODE('nmgr'),       /* notification manager attributes */
  874.     gestaltNotificationPresent  = 0                             /* notification manager exists */
  875. };
  876. enum {
  877.     gestaltNameRegistryVersion  = FOUR_CHAR_CODE('nreg')        /* NameRegistryLib version number, for System 7.5.2+ usage */
  878. };
  879. enum {
  880.     gestaltNuBusSlotCount       = FOUR_CHAR_CODE('nubs')        /* count of logical NuBus slots present */
  881. };
  882. enum {
  883.     gestaltOCEToolboxVersion    = FOUR_CHAR_CODE('ocet'),       /* OCE Toolbox version */
  884.     gestaltOCETB                = 0x0102,                       /* OCE Toolbox version 1.02 */
  885.     gestaltSFServer             = 0x0100                        /* S&F Server version 1.0 */
  886. };
  887. enum {
  888.     gestaltOCEToolboxAttr       = FOUR_CHAR_CODE('oceu'),       /* OCE Toolbox attributes */
  889.     gestaltOCETBPresent         = 0x01,                         /* OCE toolbox is present, not running */
  890.     gestaltOCETBAvailable       = 0x02,                         /* OCE toolbox is running and available */
  891.     gestaltOCESFServerAvailable = 0x04,                         /* S&F Server is running and available */
  892.     gestaltOCETBNativeGlueAvailable = 0x10                      /* Native PowerPC Glue routines are availible */
  893. };
  894. enum {
  895.     gestaltOpenFirmwareInfo     = FOUR_CHAR_CODE('opfw')        /* Open Firmware info */
  896. };
  897. enum {
  898.     gestaltOSAttr               = FOUR_CHAR_CODE('os  '),       /* o/s attributes */
  899.     gestaltSysZoneGrowable      = 0,                            /* system heap is growable */
  900.     gestaltLaunchCanReturn      = 1,                            /* can return from launch */
  901.     gestaltLaunchFullFileSpec   = 2,                            /* can launch from full file spec */
  902.     gestaltLaunchControl        = 3,                            /* launch control support available */
  903.     gestaltTempMemSupport       = 4,                            /* temp memory support */
  904.     gestaltRealTempMemory       = 5,                            /* temp memory handles are real */
  905.     gestaltTempMemTracked       = 6,                            /* temporary memory handles are tracked */
  906.     gestaltIPCSupport           = 7,                            /* IPC support is present */
  907.     gestaltSysDebuggerSupport   = 8                             /* system debugger support is present */
  908. };
  909. enum {
  910.     gestaltOSTable              = FOUR_CHAR_CODE('ostt')        /*  OS trap table base  */
  911. };
  912. /* ***** Open Transport Gestalt ******/
  913. enum {
  914.     gestaltOpenTptVersions      = FOUR_CHAR_CODE('otvr')        /* Defined by OT 1.1 and higher, response is NumVersion.*/
  915. };
  916. enum {
  917.     gestaltOpenTpt              = FOUR_CHAR_CODE('otan'),       /* Defined by all versions, response is defined below.*/
  918.     gestaltOpenTptPresentMask   = 0x00000001,
  919.     gestaltOpenTptLoadedMask    = 0x00000002,
  920.     gestaltOpenTptAppleTalkPresentMask = 0x00000004,
  921.     gestaltOpenTptAppleTalkLoadedMask = 0x00000008,
  922.     gestaltOpenTptTCPPresentMask = 0x00000010,
  923.     gestaltOpenTptTCPLoadedMask = 0x00000020,
  924.     gestaltOpenTptIPXSPXPresentMask = 0x00000040,
  925.     gestaltOpenTptIPXSPXLoadedMask = 0x00000080,
  926.     gestaltOpenTptPresentBit    = 0,
  927.     gestaltOpenTptLoadedBit     = 1,
  928.     gestaltOpenTptAppleTalkPresentBit = 2,
  929.     gestaltOpenTptAppleTalkLoadedBit = 3,
  930.     gestaltOpenTptTCPPresentBit = 4,
  931.     gestaltOpenTptTCPLoadedBit  = 5,
  932.     gestaltOpenTptIPXSPXPresentBit = 6,
  933.     gestaltOpenTptIPXSPXLoadedBit = 7
  934. };
  935. enum {
  936.     gestaltPCCard               = FOUR_CHAR_CODE('pccd'),       /*    PC Card attributes*/
  937.     gestaltCardServicesPresent  = 0,                            /*    PC Card 2.0 (68K) API is present*/
  938.     gestaltPCCardFamilyPresent  = 1,                            /*    PC Card 3.x (PowerPC) API is present*/
  939.     gestaltPCCardHasPowerControl = 2,                           /*    PCCardSetPowerLevel is supported*/
  940.     gestaltPCCardSupportsCardBus = 3                            /*    CardBus is supported*/
  941. };
  942. enum {
  943.     gestaltProcClkSpeed         = FOUR_CHAR_CODE('pclk')        /* processor clock speed in hertz */
  944. };
  945. enum {
  946.     gestaltPCXAttr              = FOUR_CHAR_CODE('pcxg'),       /* PC Exchange attributes */
  947.     gestaltPCXHas8and16BitFAT   = 0,                            /* PC Exchange supports both 8 and 16 bit FATs */
  948.     gestaltPCXHasProDOS         = 1,                            /* PC Exchange supports ProDOS */
  949.     gestaltPCXNewUI             = 2,
  950.     gestaltPCXUseICMapping      = 3                             /* PC Exchange uses InternetConfig for file mappings */
  951. };
  952. enum {
  953.     gestaltLogicalPageSize      = FOUR_CHAR_CODE('pgsz')        /* logical page size */
  954. };
  955. /*    System 7.6 and later.  If gestaltScreenCaptureMain is not implemented,
  956.     PictWhap proceeds with screen capture in the usual way.
  957.     The high word of gestaltScreenCaptureMain is reserved (use 0).
  958.     To disable screen capture to disk, put zero in the low word.  To
  959.     specify a folder for captured pictures, put the vRefNum in the
  960.     low word of gestaltScreenCaptureMain, and put the directory ID in
  961.     gestaltScreenCaptureDir.
  962. */
  963. enum {
  964.     gestaltScreenCaptureMain    = FOUR_CHAR_CODE('pic1'),       /* Zero, or vRefNum of disk to hold picture */
  965.     gestaltScreenCaptureDir     = FOUR_CHAR_CODE('pic2')        /* Directory ID of folder to hold picture */
  966. };
  967. enum {
  968.     gestaltGXPrintingMgrVersion = FOUR_CHAR_CODE('pmgr')        /* QuickDraw GX Printing Manager Version*/
  969. };
  970. enum {
  971.     gestaltPopupAttr            = FOUR_CHAR_CODE('pop!'),       /* popup cdef attributes */
  972.     gestaltPopupPresent         = 0
  973. };
  974. enum {
  975.     gestaltPowerMgrAttr         = FOUR_CHAR_CODE('powr'),       /* power manager attributes */
  976.     gestaltPMgrExists           = 0,
  977.     gestaltPMgrCPUIdle          = 1,
  978.     gestaltPMgrSCC              = 2,
  979.     gestaltPMgrSound            = 3,
  980.     gestaltPMgrDispatchExists   = 4,
  981.     gestaltPMgrSupportsAVPowerStateAtSleepWake = 5
  982. };
  983. enum {
  984.     gestaltPowerMgrVers         = FOUR_CHAR_CODE('pwrv')        /* power manager version */
  985. };
  986. /*
  987.  * PPC will return the combination of following bit fields.
  988.  * e.g. gestaltPPCSupportsRealTime +gestaltPPCSupportsIncoming + gestaltPPCSupportsOutGoing
  989.  * indicates PPC is cuurently is only supports real time delivery
  990.  * and both incoming and outgoing network sessions are allowed.
  991.  * By default local real time delivery is supported as long as PPCInit has been called.*/
  992. enum {
  993.     gestaltPPCToolboxAttr       = FOUR_CHAR_CODE('ppc '),       /* PPC toolbox attributes */
  994.     gestaltPPCToolboxPresent    = 0x0000,                       /* PPC Toolbox is present  Requires PPCInit to be called */
  995.     gestaltPPCSupportsRealTime  = 0x1000,                       /* PPC Supports real-time delivery */
  996.     gestaltPPCSupportsIncoming  = 0x0001,                       /* PPC will allow incoming network requests */
  997.     gestaltPPCSupportsOutGoing  = 0x0002,                       /* PPC will allow outgoing network requests */
  998.     gestaltPPCSupportsTCP_IP    = 0x0004,                       /* PPC supports TCP/IP transport  */
  999.     gestaltPPCSupportsIncomingAppleTalk = 0x0010,
  1000.     gestaltPPCSupportsIncomingTCP_IP = 0x0020,
  1001.     gestaltPPCSupportsOutgoingAppleTalk = 0x0100,
  1002.     gestaltPPCSupportsOutgoingTCP_IP = 0x0200
  1003. };
  1004. enum {
  1005.     gestaltPowerPCProcessorFeatures = FOUR_CHAR_CODE('ppcf'),   /* Optional PowerPC processor features */
  1006.     gestaltPowerPCHasGraphicsInstructions = 0,                  /* has fres, frsqrte, and fsel instructions */
  1007.     gestaltPowerPCHasSTFIWXInstruction = 1,                     /* has stfiwx instruction */
  1008.     gestaltPowerPCHasSquareRootInstructions = 2,                /* has fsqrt and fsqrts instructions */
  1009.     gestaltPowerPCHasDCBAInstruction = 3,                       /* has dcba instruction */
  1010.     gestaltPowerPCHasVectorInstructions = 4,                    /* has vector instructions */
  1011.     gestaltPowerPCHasDataStreams = 5                            /* has dst, dstt, dstst, dss, and dssall instructions */
  1012. };
  1013. enum {
  1014.     gestaltProcessorType        = FOUR_CHAR_CODE('proc'),       /* processor type */
  1015.     gestalt68000                = 1,
  1016.     gestalt68010                = 2,
  1017.     gestalt68020                = 3,
  1018.     gestalt68030                = 4,
  1019.     gestalt68040                = 5
  1020. };
  1021. enum {
  1022.     gestaltSDPPromptVersion     = FOUR_CHAR_CODE('prpv')        /* OCE Standard Directory Panel*/
  1023. };
  1024. enum {
  1025.     gestaltParityAttr           = FOUR_CHAR_CODE('prty'),       /* parity attributes */
  1026.     gestaltHasParityCapability  = 0,                            /* has ability to check parity */
  1027.     gestaltParityEnabled        = 1                             /* parity checking enabled */
  1028. };
  1029. enum {
  1030.     gestaltQD3DVersion          = FOUR_CHAR_CODE('q3v ')        /* Quickdraw 3D version in pack BCD*/
  1031. };
  1032. enum {
  1033.     gestaltQD3DViewer           = FOUR_CHAR_CODE('q3vc'),       /* Quickdraw 3D viewer attributes*/
  1034.     gestaltQD3DViewerPresent    = 0                             /* bit 0 set if QD3D Viewer is available*/
  1035. };
  1036. #if OLDROUTINENAMES
  1037. enum {
  1038.     gestaltQD3DViewerNotPresent = (0 << gestaltQD3DViewerPresent),
  1039.     gestaltQD3DViewerAvailable  = (1 << gestaltQD3DViewerPresent)
  1040. };
  1041. #endif  /* OLDROUTINENAMES */
  1042. enum {
  1043.     gestaltQuickdrawVersion     = FOUR_CHAR_CODE('qd  '),       /* quickdraw version */
  1044.     gestaltOriginalQD           = 0x0000,                       /* original 1-bit QD */
  1045.     gestalt8BitQD               = 0x0100,                       /* 8-bit color QD */
  1046.     gestalt32BitQD              = 0x0200,                       /* 32-bit color QD */
  1047.     gestalt32BitQD11            = 0x0201,                       /* 32-bit color QDv1.1 */
  1048.     gestalt32BitQD12            = 0x0220,                       /* 32-bit color QDv1.2 */
  1049.     gestalt32BitQD13            = 0x0230,                       /* 32-bit color QDv1.3 */
  1050.     gestaltAllegroQD            = 0x0250                        /* Allegro QD OS 8.5 */
  1051. };
  1052. enum {
  1053.     gestaltQD3D                 = FOUR_CHAR_CODE('qd3d'),       /* Quickdraw 3D attributes*/
  1054.     gestaltQD3DPresent          = 0                             /* bit 0 set if QD3D available*/
  1055. };
  1056. #if OLDROUTINENAMES
  1057. enum {
  1058.     gestaltQD3DNotPresent       = (0 << gestaltQD3DPresent),
  1059.     gestaltQD3DAvailable        = (1 << gestaltQD3DPresent)
  1060. };
  1061. #endif  /* OLDROUTINENAMES */
  1062. enum {
  1063.     gestaltGXVersion            = FOUR_CHAR_CODE('qdgx')        /* Overall QuickDraw GX Version*/
  1064. };
  1065. enum {
  1066.     gestaltQuickdrawFeatures    = FOUR_CHAR_CODE('qdrw'),       /* quickdraw features */
  1067.     gestaltHasColor             = 0,                            /* color quickdraw present */
  1068.     gestaltHasDeepGWorlds       = 1,                            /* GWorlds can be deeper than 1-bit */
  1069.     gestaltHasDirectPixMaps     = 2,                            /* PixMaps can be direct (16 or 32 bit) */
  1070.     gestaltHasGrayishTextOr     = 3,                            /* supports text mode grayishTextOr */
  1071.     gestaltSupportsMirroring    = 4,                            /* Supports video mirroring via the Display Manager. */
  1072.     gestaltQDHasLongRowBytes    = 5                             /* Long rowBytes supported in GWorlds */
  1073. };
  1074. enum {
  1075.     gestaltQDTextVersion        = FOUR_CHAR_CODE('qdtx'),       /* QuickdrawText version */
  1076.     gestaltOriginalQDText       = 0x0000,                       /* up to and including 8.1 */
  1077.     gestaltAllegroQDText        = 0x0100                        /* starting with 8.2 (?) */
  1078. };
  1079. enum {
  1080.     gestaltQDTextFeatures       = FOUR_CHAR_CODE('qdtf'),       /* QuickdrawText features */
  1081.     gestaltWSIISupport          = 0,                            /* bit 0: WSII support included */
  1082.     gestaltSbitFontSupport      = 1,                            /* sbit-only fonts supported */
  1083.     gestaltAntiAliasedTextAvailable = 2,                        /* capable of antialiased text */
  1084.     gestaltOFA2available        = 3,                            /* OFA2 available */
  1085.     gestaltCreatesAliasFontRsrc = 4,                            /* "real" datafork font support */
  1086.     gestaltNativeType1FontSupport = 5                           /* we have scaler for Type1 fonts */
  1087. };
  1088. enum {
  1089.     gestaltQuickTimeConferencingInfo = FOUR_CHAR_CODE('qtci')   /* returns pointer to QuickTime Conferencing information */
  1090. };
  1091. enum {
  1092.     gestaltQuickTimeVersion     = FOUR_CHAR_CODE('qtim'),       /* returns version of QuickTime */
  1093.     gestaltQuickTime            = FOUR_CHAR_CODE('qtim')        /* gestaltQuickTime is old name for gestaltQuickTimeVersion */
  1094. };
  1095. enum {
  1096.     gestaltQuickTimeFeatures    = FOUR_CHAR_CODE('qtrs'),
  1097.     gestaltPPCQuickTimeLibPresent = 0                           /* PowerPC QuickTime glue library is present */
  1098. };
  1099. enum {
  1100.     gestaltQuickTimeStreamingFeatures = FOUR_CHAR_CODE('qtsf')
  1101. };
  1102. enum {
  1103.     gestaltQuickTimeStreamingVersion = FOUR_CHAR_CODE('qtst')
  1104. };
  1105. enum {
  1106.     gestaltQTVRMgrAttr          = FOUR_CHAR_CODE('qtvr'),       /* QuickTime VR attributes                               */
  1107.     gestaltQTVRMgrPresent       = 0,                            /* QTVR API is present                                   */
  1108.     gestaltQTVRObjMoviesPresent = 1,                            /* QTVR runtime knows about object movies                */
  1109.     gestaltQTVRCylinderPanosPresent = 2,                        /* QTVR runtime knows about cylindrical panoramic movies */
  1110.     gestaltQTVRCubicPanosPresent = 3                            /* QTVR runtime knows about cubic panoramic movies       */
  1111. };
  1112. enum {
  1113.     gestaltQTVRMgrVers          = FOUR_CHAR_CODE('qtvv')        /* QuickTime VR version                                  */
  1114. };
  1115. enum {
  1116.     gestaltPhysicalRAMSize      = FOUR_CHAR_CODE('ram ')        /* physical RAM size */
  1117. };
  1118. enum {
  1119.     gestaltRBVAddr              = FOUR_CHAR_CODE('rbv ')        /* RBV base address  */
  1120. };
  1121. enum {
  1122.     gestaltROMSize              = FOUR_CHAR_CODE('rom ')        /* rom size */
  1123. };
  1124. enum {
  1125.     gestaltROMVersion           = FOUR_CHAR_CODE('romv')        /* rom version */
  1126. };
  1127. enum {
  1128.     gestaltResourceMgrAttr      = FOUR_CHAR_CODE('rsrc'),       /* Resource Mgr attributes */
  1129.     gestaltPartialRsrcs         = 0,                            /* True if partial resources exist */
  1130.     gestaltHasResourceOverrides = 1                             /* Appears in the ROM; so put it here. */
  1131. };
  1132. enum {
  1133.     gestaltResourceMgrBugFixesAttrs = FOUR_CHAR_CODE('rmbg'),   /* Resource Mgr bug fixes */
  1134.     gestaltRMForceSysHeapRolledIn = 0,
  1135.     gestaltRMFakeAppleMenuItemsRolledIn = 1,
  1136.     gestaltSanityCheckResourceFiles = 2,                        /* Resource manager does sanity checking on resource files before opening them */
  1137.     gestaltSupportsFSpResourceFileAlreadyOpenBit = 3,           /* The resource manager supports GetResFileRefNum and FSpGetResFileRefNum and FSpResourceFileAlreadyOpen */
  1138.     gestaltRMTypeIndexOrderingReverse = 8                       /* GetIndType() calls return resource types in opposite order to original 68k resource manager */
  1139. };
  1140. enum {
  1141.     gestaltRealtimeMgrAttr      = FOUR_CHAR_CODE('rtmr'),       /* Realtime manager attributes         */
  1142.     gestaltRealtimeMgrPresent   = 0                             /* true if the Realtime manager is present    */
  1143. };
  1144. enum {
  1145.     gestaltSafeOFAttr           = FOUR_CHAR_CODE('safe'),
  1146.     gestaltVMZerosPagesBit      = 0,
  1147.     gestaltInitHeapZerosOutHeapsBit = 1,
  1148.     gestaltNewHandleReturnsZeroedMemoryBit = 2,
  1149.     gestaltNewPtrReturnsZeroedMemoryBit = 3,
  1150.     gestaltFileAllocationZeroedBlocksBit = 4
  1151. };
  1152. enum {
  1153.     gestaltSCCReadAddr          = FOUR_CHAR_CODE('sccr')        /* scc read base address  */
  1154. };
  1155. enum {
  1156.     gestaltSCCWriteAddr         = FOUR_CHAR_CODE('sccw')        /* scc read base address  */
  1157. };
  1158. enum {
  1159.     gestaltScrapMgrAttr         = FOUR_CHAR_CODE('scra'),       /* Scrap Manager attributes */
  1160.     gestaltScrapMgrTranslationAware = 0                         /* True if scrap manager is translation aware */
  1161. };
  1162. enum {
  1163.     gestaltScriptMgrVersion     = FOUR_CHAR_CODE('scri')        /* Script Manager version number     */
  1164. };
  1165. enum {
  1166.     gestaltScriptCount          = FOUR_CHAR_CODE('scr#')        /* number of active script systems   */
  1167. };
  1168. enum {
  1169.     gestaltSCSI                 = FOUR_CHAR_CODE('scsi'),       /* SCSI Manager attributes */
  1170.     gestaltAsyncSCSI            = 0,                            /* Supports Asynchronous SCSI */
  1171.     gestaltAsyncSCSIINROM       = 1,                            /* Async scsi is in ROM (available for booting) */
  1172.     gestaltSCSISlotBoot         = 2,                            /* ROM supports Slot-style PRAM for SCSI boots (PDM and later) */
  1173.     gestaltSCSIPollSIH          = 3                             /* SCSI Manager will poll for interrupts if Secondary Interrupts are busy. */
  1174. };
  1175. enum {
  1176.     gestaltControlStripAttr     = FOUR_CHAR_CODE('sdev'),       /* Control Strip attributes */
  1177.     gestaltControlStripExists   = 0,                            /* Control Strip is installed */
  1178.     gestaltControlStripVersionFixed = 1,                        /* Control Strip version Gestalt selector was fixed */
  1179.     gestaltControlStripUserFont = 2,                            /* supports user-selectable font/size */
  1180.     gestaltControlStripUserHotKey = 3                           /* support user-selectable hot key to show/hide the window */
  1181. };
  1182. enum {
  1183.     gestaltSDPStandardDirectoryVersion = FOUR_CHAR_CODE('sdvr') /* OCE Standard Directory Panel*/
  1184. };
  1185. enum {
  1186.     gestaltSerialAttr           = FOUR_CHAR_CODE('ser '),       /* Serial attributes */
  1187.     gestaltHasGPIaToDCDa        = 0,                            /* GPIa connected to DCDa*/
  1188.     gestaltHasGPIaToRTxCa       = 1,                            /* GPIa connected to RTxCa clock input*/
  1189.     gestaltHasGPIbToDCDb        = 2,                            /* GPIb connected to DCDb */
  1190.     gestaltHidePortA            = 3,                            /* Modem port (A) should be hidden from users */
  1191.     gestaltHidePortB            = 4                             /* Printer port (B) should be hidden from users */
  1192. };
  1193. enum {
  1194.     gestaltShutdownAttributes   = FOUR_CHAR_CODE('shut'),       /* ShutDown Manager Attributes */
  1195.     gestaltShutdownHassdOnBootVolUnmount = 0                    /* True if ShutDown Manager unmounts boot & VM volume at shutdown time. */
  1196. };
  1197. enum {
  1198.     gestaltNuBusConnectors      = FOUR_CHAR_CODE('sltc')        /* bitmap of NuBus connectors*/
  1199. };
  1200. enum {
  1201.     gestaltSlotAttr             = FOUR_CHAR_CODE('slot'),       /* slot attributes  */
  1202.     gestaltSlotMgrExists        = 0,                            /* true is slot mgr exists  */
  1203.     gestaltNuBusPresent         = 1,                            /* NuBus slots are present  */
  1204.     gestaltSESlotPresent        = 2,                            /* SE PDS slot present  */
  1205.     gestaltSE30SlotPresent      = 3,                            /* SE/30 slot present  */
  1206.     gestaltPortableSlotPresent  = 4                             /* Portable's slot present  */
  1207. };
  1208. enum {
  1209.     gestaltFirstSlotNumber      = FOUR_CHAR_CODE('slt1')        /* returns first physical slot */
  1210. };
  1211. enum {
  1212.     gestaltSoundAttr            = FOUR_CHAR_CODE('snd '),       /* sound attributes */
  1213.     gestaltStereoCapability     = 0,                            /* sound hardware has stereo capability */
  1214.     gestaltStereoMixing         = 1,                            /* stereo mixing on external speaker */
  1215.     gestaltSoundIOMgrPresent    = 3,                            /* The Sound I/O Manager is present */
  1216.     gestaltBuiltInSoundInput    = 4,                            /* built-in Sound Input hardware is present */
  1217.     gestaltHasSoundInputDevice  = 5,                            /* Sound Input device available */
  1218.     gestaltPlayAndRecord        = 6,                            /* built-in hardware can play and record simultaneously */
  1219.     gestalt16BitSoundIO         = 7,                            /* sound hardware can play and record 16-bit samples */
  1220.     gestaltStereoInput          = 8,                            /* sound hardware can record stereo */
  1221.     gestaltLineLevelInput       = 9,                            /* sound input port requires line level */
  1222.                                                                 /* the following bits are not defined prior to Sound Mgr 3.0 */
  1223.     gestaltSndPlayDoubleBuffer  = 10,                           /* SndPlayDoubleBuffer available, set by Sound Mgr 3.0 and later */
  1224.     gestaltMultiChannels        = 11,                           /* multiple channel support, set by Sound Mgr 3.0 and later */
  1225.     gestalt16BitAudioSupport    = 12                            /* 16 bit audio data supported, set by Sound Mgr 3.0 and later */
  1226. };
  1227. enum {
  1228.     gestaltSplitOSAttr          = FOUR_CHAR_CODE('spos'),
  1229.     gestaltSplitOSBootDriveIsNetworkVolume = 0,                 /* the boot disk is a network 'disk', from the .LANDisk drive. */
  1230.     gestaltSplitOSAware         = 1,                            /* the system includes the code to deal with a split os situation. */
  1231.     gestaltSplitOSEnablerVolumeIsDifferentFromBootVolume = 2,   /* the active enabler is on a different volume than the system file. */
  1232.     gestaltSplitOSMachineNameSetToNetworkNameTemp = 3           /* The machine name was set to the value given us from the BootP server */
  1233. };
  1234. enum {
  1235.     gestaltSMPSPSendLetterVersion = FOUR_CHAR_CODE('spsl')      /* OCE StandardMail*/
  1236. };
  1237. enum {
  1238.     gestaltSpeechRecognitionAttr = FOUR_CHAR_CODE('srta'),      /* speech recognition attributes */
  1239.     gestaltDesktopSpeechRecognition = 1,                        /* recognition thru the desktop microphone is available */
  1240.     gestaltTelephoneSpeechRecognition = 2                       /* recognition thru the telephone is available */
  1241. };
  1242. enum {
  1243.     gestaltSpeechRecognitionVersion = FOUR_CHAR_CODE('srtb')    /* speech recognition version (0x0150 is the first version that fully supports the API) */
  1244. };
  1245. enum {
  1246.     gestaltSoftwareVendorCode   = FOUR_CHAR_CODE('srad'),       /* Returns system software vendor information */
  1247.     gestaltSoftwareVendorApple  = FOUR_CHAR_CODE('Appl'),       /* System software sold by Apple */
  1248.     gestaltSoftwareVendorLicensee = FOUR_CHAR_CODE('Lcns')      /* System software sold by licensee */
  1249. };
  1250. enum {
  1251.     gestaltStandardFileAttr     = FOUR_CHAR_CODE('stdf'),       /* Standard File attributes */
  1252.     gestaltStandardFile58       = 0,                            /* True if selectors 5-8 (StandardPutFile-CustomGetFile) are supported */
  1253.     gestaltStandardFileTranslationAware = 1,                    /* True if standard file is translation manager aware */
  1254.     gestaltStandardFileHasColorIcons = 2,                       /* True if standard file has 16x16 color icons */
  1255.     gestaltStandardFileUseGenericIcons = 3,                     /* Standard file LDEF to use only the system generic icons if true */
  1256.     gestaltStandardFileHasDynamicVolumeAllocation = 4           /* True if standard file supports more than 20 volumes */
  1257. };
  1258. enum {
  1259.     gestaltSysArchitecture      = FOUR_CHAR_CODE('sysa'),       /* Native System Architecture */
  1260.     gestalt68k                  = 1,                            /* Motorola MC68k architecture */
  1261.     gestaltPowerPC              = 2                             /* IBM PowerPC architecture */
  1262. };
  1263. enum {
  1264.     gestaltSystemUpdateVersion  = FOUR_CHAR_CODE('sysu')        /* System Update version */
  1265. };
  1266. enum {
  1267.     gestaltSystemVersion        = FOUR_CHAR_CODE('sysv')        /* system version*/
  1268. };
  1269. enum {
  1270.     gestaltToolboxTable         = FOUR_CHAR_CODE('tbtt')        /*  OS trap table base  */
  1271. };
  1272. enum {
  1273.     gestaltTextEditVersion      = FOUR_CHAR_CODE('te  '),       /* TextEdit version number */
  1274.     gestaltTE1                  = 1,                            /* TextEdit in MacIIci ROM */
  1275.     gestaltTE2                  = 2,                            /* TextEdit with 6.0.4 Script Systems on MacIIci (Script bug fixes for MacIIci) */
  1276.     gestaltTE3                  = 3,                            /* TextEdit with 6.0.4 Script Systems all but MacIIci */
  1277.     gestaltTE4                  = 4,                            /* TextEdit in System 7.0 */
  1278.     gestaltTE5                  = 5                             /* TextWidthHook available in TextEdit */
  1279. };
  1280. enum {
  1281.     gestaltTEAttr               = FOUR_CHAR_CODE('teat'),       /* TextEdit attributes */
  1282.     gestaltTEHasGetHiliteRgn    = 0,                            /* TextEdit has TEGetHiliteRgn */
  1283.     gestaltTESupportsInlineInput = 1,                           /* TextEdit does Inline Input */
  1284.     gestaltTESupportsTextObjects = 2,                           /* TextEdit does Text Objects */
  1285.     gestaltTEHasWhiteBackground = 3                             /* TextEdit supports overriding the TERec's background to white */
  1286. };
  1287. enum {
  1288.     gestaltTeleMgrAttr          = FOUR_CHAR_CODE('tele'),       /* Telephone manager attributes */
  1289.     gestaltTeleMgrPresent       = 0,
  1290.     gestaltTeleMgrPowerPCSupport = 1,
  1291.     gestaltTeleMgrSoundStreams  = 2,
  1292.     gestaltTeleMgrAutoAnswer    = 3,
  1293.     gestaltTeleMgrIndHandset    = 4,
  1294.     gestaltTeleMgrSilenceDetect = 5,
  1295.     gestaltTeleMgrNewTELNewSupport = 6
  1296. };
  1297. enum {
  1298.     gestaltTermMgrAttr          = FOUR_CHAR_CODE('term'),       /* terminal mgr attributes */
  1299.     gestaltTermMgrPresent       = 0,
  1300.     gestaltTermMgrErrorString   = 2
  1301. };
  1302. enum {
  1303.     gestaltThreadMgrAttr        = FOUR_CHAR_CODE('thds'),       /* Thread Manager attributes */
  1304.     gestaltThreadMgrPresent     = 0,                            /* bit true if Thread Mgr is present */
  1305.     gestaltSpecificMatchSupport = 1,                            /* bit true if Thread Mgr supports exact match creation option */
  1306.     gestaltThreadsLibraryPresent = 2                            /* bit true if Thread Mgr shared library is present */
  1307. };
  1308. enum {
  1309.     gestaltTimeMgrVersion       = FOUR_CHAR_CODE('tmgr'),       /* time mgr version */
  1310.     gestaltStandardTimeMgr      = 1,                            /* standard time mgr is present */
  1311.     gestaltRevisedTimeMgr       = 2,                            /* revised time mgr is present */
  1312.     gestaltExtendedTimeMgr      = 3                             /* extended time mgr is present */
  1313. };
  1314. enum {
  1315.     gestaltTSMTEVersion         = FOUR_CHAR_CODE('tmTV'),
  1316.     gestaltTSMTE1               = 0x0100,                       /* Original version of TSMTE */
  1317.     gestaltTSMTE15              = 0x0150,                       /* System 8.0 */
  1318.     gestaltTSMTE152             = 0x0152                        /* System 8.2 */
  1319. };
  1320. enum {
  1321.     gestaltTSMTEAttr            = FOUR_CHAR_CODE('tmTE'),
  1322.     gestaltTSMTEPresent         = 0,
  1323.     gestaltTSMTE                = 0                             /* gestaltTSMTE is old name for gestaltTSMTEPresent */
  1324. };
  1325. enum {
  1326.     gestaltAVLTreeAttr          = FOUR_CHAR_CODE('tree'),       /* AVLTree utility routines attributes. */
  1327.     gestaltAVLTreePresentBit    = 0                             /* if set, then the AVL Tree routines are available. */
  1328. };
  1329. enum {
  1330.     gestaltALMAttr              = FOUR_CHAR_CODE('trip'),       /* Settings Manager attributes (see also gestaltALMVers) */
  1331.     gestaltALMPresent           = 0,                            /* bit true if ALM is available */
  1332.     gestaltALMHasSFGroup        = 1,                            /* bit true if Put/Get/Merge Group calls are implmented */
  1333.     gestaltALMHasCFMSupport     = 2,                            /* bit true if CFM-based modules are supported */
  1334.     gestaltALMHasRescanNotifiers = 3                            /* bit true if Rescan notifications/events will be sent to clients */
  1335. };
  1336. enum {
  1337.     gestaltALMHasSFLocation     = gestaltALMHasSFGroup
  1338. };
  1339. enum {
  1340.     gestaltTSMgrVersion         = FOUR_CHAR_CODE('tsmv'),       /* Text Services Mgr version, if present */
  1341.     gestaltTSMgr15              = 0x0150,
  1342.     gestaltTSMgr20              = 0x0200
  1343. };
  1344. enum {
  1345.     gestaltTSMgrAttr            = FOUR_CHAR_CODE('tsma'),       /* Text Services Mgr attributes, if present */
  1346.     gestaltTSMDisplayMgrAwareBit = 0,                           /* TSM knows about display manager */
  1347.     gestaltTSMdoesTSMTEBit      = 1                             /* TSM has integrated TSMTE */
  1348. };
  1349. enum {
  1350.     gestaltSpeechAttr           = FOUR_CHAR_CODE('ttsc'),       /* Speech Manager attributes */
  1351.     gestaltSpeechMgrPresent     = 0,                            /* bit set indicates that Speech Manager exists */
  1352.     gestaltSpeechHasPPCGlue     = 1                             /* bit set indicates that native PPC glue for Speech Manager API exists */
  1353. };
  1354. enum {
  1355.     gestaltTVAttr               = FOUR_CHAR_CODE('tv  '),       /* TV version */
  1356.     gestaltHasTVTuner           = 0,                            /* supports Philips FL1236F video tuner */
  1357.     gestaltHasSoundFader        = 1,                            /* supports Philips TEA6330 Sound Fader chip */
  1358.     gestaltHasHWClosedCaptioning = 2,                           /* supports Philips SAA5252 Closed Captioning */
  1359.     gestaltHasIRRemote          = 3,                            /* supports CyclopsII Infra Red Remote control */
  1360.     gestaltHasVidDecoderScaler  = 4,                            /* supports Philips SAA7194 Video Decoder/Scaler */
  1361.     gestaltHasStereoDecoder     = 5,                            /* supports Sony SBX1637A-01 stereo decoder */
  1362.     gestaltHasSerialFader       = 6,                            /* has fader audio in serial with system audio */
  1363.     gestaltHasFMTuner           = 7,                            /* has FM Tuner from donnybrook card */
  1364.     gestaltHasSystemIRFunction  = 8,                            /* Infra Red button function is set up by system and not by Video Startup */
  1365.     gestaltIRDisabled           = 9,                            /* Infra Red remote is not disabled. */
  1366.     gestaltINeedIRPowerOffConfirm = 10,                         /* Need IR power off confirm dialog. */
  1367.     gestaltHasZoomedVideo       = 11                            /* Has Zoomed Video PC Card video input. */
  1368. };
  1369. enum {
  1370.     gestaltATSUVersion          = FOUR_CHAR_CODE('uisv'),
  1371.     gestaltOriginalATSUVersion  = (1 << 16),                    /* ATSUI version 1.0*/
  1372.     gestaltATSUUpdate1          = (2 << 16),                    /* ATSUI version 1.1*/
  1373.     gestaltATSUUpdate2          = (3 << 16),                    /* ATSUI version 1.2*/
  1374.     gestaltATSUUpdate3          = (4 << 16)                     /* ATSUI version 2.0*/
  1375. };
  1376. enum {
  1377.     gestaltATSUFeatures         = FOUR_CHAR_CODE('uisf'),
  1378.     gestaltATSUTrackingFeature  = 0x00000001,                   /* feature introduced in ATSUI version 1.1*/
  1379.     gestaltATSUMemoryFeature    = 0x00000001,                   /* feature introduced in ATSUI version 1.1*/
  1380.     gestaltATSUFallbacksFeature = 0x00000001,                   /* feature introduced in ATSUI version 1.1*/
  1381.     gestaltATSUGlyphBoundsFeature = 0x00000001,                 /* feature introduced in ATSUI version 1.1*/
  1382.     gestaltATSULineControlFeature = 0x00000001,                 /* feature introduced in ATSUI version 1.1*/
  1383.     gestaltATSULayoutCreateAndCopyFeature = 0x00000001,         /* feature introduced in ATSUI version 1.1*/
  1384.     gestaltATSULayoutCacheClearFeature = 0x00000001,            /* feature introduced in ATSUI version 1.1*/
  1385.     gestaltATSUTextLocatorUsageFeature = 0x00000002,            /* feature introduced in ATSUI version 1.2*/
  1386.     gestaltATSULowLevelOrigFeatures = 0x00000004                /* first low-level features introduced in ATSUI version 2.0*/
  1387. };
  1388. enum {
  1389.     gestaltUSBAttr              = FOUR_CHAR_CODE('usb '),       /* USB Attributes */
  1390.     gestaltUSBPresent           = 0,                            /* USB Support available */
  1391.     gestaltUSBHasIsoch          = 1                             /* USB Isochronous features available */
  1392. };
  1393. enum {
  1394.     gestaltUSBVersion           = FOUR_CHAR_CODE('usbv')        /* USB version */
  1395. };
  1396. enum {
  1397.     gestaltVersion              = FOUR_CHAR_CODE('vers'),       /* gestalt version */
  1398.     gestaltValueImplementedVers = 5                             /* version of gestalt where gestaltValue is implemented. */
  1399. };
  1400. enum {
  1401.     gestaltVIA1Addr             = FOUR_CHAR_CODE('via1')        /* via 1 base address  */
  1402. };
  1403. enum {
  1404.     gestaltVIA2Addr             = FOUR_CHAR_CODE('via2')        /* via 2 base address  */
  1405. };
  1406. enum {
  1407.     gestaltVMAttr               = FOUR_CHAR_CODE('vm  '),       /* virtual memory attributes */
  1408.     gestaltVMPresent            = 0,                            /* true if virtual memory is present */
  1409.     gestaltVMHasLockMemoryForOutput = 1,                        /* true if LockMemoryForOutput is available */
  1410.     gestaltVMFilemappingOn      = 3,                            /* true if filemapping is available */
  1411.     gestaltVMHasPagingControl   = 4                             /* true if MakeMemoryResident, MakeMemoryNonResident, FlushMemory, and ReleaseMemoryData are available */
  1412. };
  1413. enum {
  1414.     gestaltVMInfoType           = FOUR_CHAR_CODE('vmin'),       /* Indicates how the Finder should display information about VM in */
  1415.                                                                 /* the Finder about box. */
  1416.     gestaltVMInfoSizeStorageType = 0,                           /* Display VM on/off, backing store size and name */
  1417.     gestaltVMInfoSizeType       = 1,                            /* Display whether VM is on or off and the size of the backing store */
  1418.     gestaltVMInfoSimpleType     = 2,                            /* Display whether VM is on or off */
  1419.     gestaltVMInfoNoneType       = 3                             /* Display no VM information */
  1420. };
  1421. enum {
  1422.     gestaltVMBackingStoreFileRefNum = FOUR_CHAR_CODE('vmbs')    /* file refNum of virtual memory's main backing store file (returned in low word of result) */
  1423. };
  1424. enum {
  1425.     gestaltALMVers              = FOUR_CHAR_CODE('walk')        /* Settings Manager version (see also gestaltALMAttr) */
  1426. };
  1427. enum {
  1428.     gestaltWindowMgrAttr        = FOUR_CHAR_CODE('wind'),       /* If this Gestalt exists, the Mac OS 8.5 Window Manager is installed*/
  1429.     gestaltWindowMgrPresent     = (1L << 0),                    /* NOTE: this is a bit mask, where all other Gestalt constants of*/
  1430.                                                                 /* this type are bit index values.   Universal Interfaces 3.2 slipped*/
  1431.                                                                 /* out the door with this mistake.*/
  1432.     gestaltWindowMgrPresentBit  = 0,                            /* bit number*/
  1433.     gestaltExtendedWindowAttributes = 1,                        /* Has ChangeWindowAttributes; GetWindowAttributes works for all windows*/
  1434.     gestaltExtendedWindowAttributesBit = 1,                     /* Has ChangeWindowAttributes; GetWindowAttributes works for all windows*/
  1435.     gestaltHasFloatingWindows   = 2,                            /* Floating window APIs work*/
  1436.     gestaltHasFloatingWindowsBit = 2,                           /* Floating window APIs work*/
  1437.     gestaltHasWindowBuffering   = 3,                            /* This system has buffering available*/
  1438.     gestaltHasWindowBufferingBit = 3,                           /* This system has buffering available*/
  1439.                                                                 /* masks for above bits*/
  1440.     gestaltWindowMgrPresentMask = (1L << gestaltWindowMgrPresentBit),
  1441.     gestaltExtendedWindowAttributesMask = (1L << gestaltExtendedWindowAttributesBit),
  1442.     gestaltHasFloatingWindowsMask = (1L << gestaltHasFloatingWindowsBit),
  1443.     gestaltHasWindowBufferingMask = (1L << gestaltHasWindowBufferingBit)
  1444. };
  1445. /*#if TARGET_OS_WIN32 - These are needed by the i386 compiler for X*/
  1446. #if TARGET_CPU_X86
  1447. enum {
  1448.     gestaltX86Features          = FOUR_CHAR_CODE('x86f'),
  1449.     gestaltX86HasFPU            = 0,                            /* has an FPU that supports the 387 instructions*/
  1450.     gestaltX86HasVME            = 1,                            /* supports Virtual-8086 Mode Extensions*/
  1451.     gestaltX86HasDE             = 2,                            /* supports I/O breakpoints (Debug Extensions)*/
  1452.     gestaltX86HasPSE            = 3,                            /* supports 4-Mbyte pages (Page Size Extension)*/
  1453.     gestaltX86HasTSC            = 4,                            /* supports RTDSC instruction (Time Stamp Counter)*/
  1454.     gestaltX86HasMSR            = 5,                            /* supports Model Specific Registers*/
  1455.     gestaltX86HasPAE            = 6,                            /* supports physical addresses > 32 bits (Physical Address Extension)*/
  1456.     gestaltX86HasMCE            = 7,                            /* supports Machine Check Exception*/
  1457.     gestaltX86HasCX8            = 8,                            /* supports CMPXCHG8 instructions (Compare Exchange 8 bytes)*/
  1458.     gestaltX86HasAPIC           = 9,                            /* contains local APIC*/
  1459.     gestaltX86Reserved10        = 10,                           /* do not count on this bit value*/
  1460.     gestaltX86HasSEP            = 11,                           /* supports fast system call (SysEnter Present)*/
  1461.     gestaltX86HasMTRR           = 12,                           /* supports Memory Type Range Registers*/
  1462.     gestaltX86HasPGE            = 13,                           /* supports Page Global Enable*/
  1463.     gestaltX86HasMCA            = 14,                           /* supports Machine Check Architecture*/
  1464.     gestaltX86HasCMOV           = 15,                           /* supports CMOVcc instruction (Conditional Move).*/
  1465.                                                                 /* If FPU bit is also set, supports FCMOVcc and FCOMI, too*/
  1466.     gestaltX86HasPAT            = 16,                           /* supports Page Attribute Table*/
  1467.     gestaltX86HasPSE36          = 17,                           /* supports 36-bit Page Size Extension*/
  1468.     gestaltX86HasPSN            = 18,                           /* supports PSN, PSN_DISABLE MSR*/
  1469.     gestaltX86HasCLFL           = 19,                           /* supports CLFLUSH instruction*/
  1470.     gestaltX86HasDTES           = 21,                           /* supports Debug Trace and EMON Store MSRs*/
  1471.     gestaltX86HasACPI           = 22,                           /* supports IA32_THERM_* MSRs, xAPIC thermal LVT entry*/
  1472.     gestaltX86HasMMX            = 23,                           /* supports MMX instructions*/
  1473.     gestaltX86HasFXSR           = 24,                           /* Supports FXSAVE and FXRSTOR instructions (fast FP save/restore)*/
  1474.     gestaltX86HasSSE            = 25,                           /* supports Streaming SIMD Extensions (aka. Katmai New Instructions; aka. Floating point vector instructions)*/
  1475.     gestaltX86HasSSE2           = 26,                           /* supports even more Streaming SIMD Extensions*/
  1476.     gestaltX86HasSS             = 27,                           /* supports "selfsnoop"*/
  1477.     gestaltX86HasHTT            = 28,                           /* supports Hyper-Threading Technology*/
  1478.     gestaltX86HasTM             = 29,                           /* supports IA32_THERM_* MSRs, xAPIC thermal LVT entry*/
  1479.     gestaltX86HasIA64           = 30                            /* supports IA-64, JMPE Jv, JMPE Ev*/
  1480. };
  1481. #endif  /* TARGET_CPU_X86 */
  1482. enum {
  1483.     gestaltTranslationAttr      = FOUR_CHAR_CODE('xlat'),       /* Translation Manager attributes */
  1484.     gestaltTranslationMgrExists = 0,                            /* True if translation manager exists */
  1485.     gestaltTranslationMgrHintOrder = 1,                         /* True if hint order reversal in effect */
  1486.     gestaltTranslationPPCAvail  = 2,
  1487.     gestaltTranslationGetPathAPIAvail = 3
  1488. };
  1489. enum {
  1490.     gestaltExtToolboxTable      = FOUR_CHAR_CODE('xttt')        /* Extended Toolbox trap table base */
  1491. };
  1492. /*WorldScript settings;*/
  1493. enum {
  1494.     gestaltWorldScriptIIVersion = FOUR_CHAR_CODE('doub'),
  1495.     gestaltWorldScriptIIAttr    = FOUR_CHAR_CODE('wsat'),
  1496.     gestaltWSIICanPrintWithoutPrGeneralBit = 0                  /* bit 0 is on if WS II knows about PrinterStatus callback */
  1497. };
  1498. #if PRAGMA_STRUCT_ALIGN
  1499.     #pragma options align=reset
  1500. #elif PRAGMA_STRUCT_PACKPUSH
  1501.     #pragma pack(pop)
  1502. #elif PRAGMA_STRUCT_PACK
  1503.     #pragma pack()
  1504. #endif
  1505. #ifdef PRAGMA_IMPORT_OFF
  1506. #pragma import off
  1507. #elif PRAGMA_IMPORT
  1508. #pragma import reset
  1509. #endif
  1510. #ifdef __cplusplus
  1511. }
  1512. #endif
  1513. #endif /* __GESTALT__ */