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

多媒体编程

开发平台:

Visual C++

  1. /*
  2.      File:       OSA.h
  3.  
  4.      Contains:   Open Scripting Architecture Client Interfaces.
  5.  
  6.      Version:    Technology: AppleScript 1.4
  7.                  Release:    QuickTime 6.0.2
  8.  
  9.      Copyright:  (c) 1992-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 __OSA__
  18. #define __OSA__
  19. #ifndef __MACERRORS__
  20. #include "MacErrors.h"
  21. #endif
  22. #ifndef __APPLEEVENTS__
  23. #include "AppleEvents.h"
  24. #endif
  25. #ifndef __AEOBJECTS__
  26. #include "AEObjects.h"
  27. #endif
  28. #ifndef __COMPONENTS__
  29. #include "Components.h"
  30. #endif
  31. #ifndef __MACERRORS__
  32. #include "MacErrors.h"
  33. #endif
  34. #if PRAGMA_ONCE
  35. #pragma once
  36. #endif
  37. #ifdef __cplusplus
  38. extern "C" {
  39. #endif
  40. #if PRAGMA_IMPORT
  41. #pragma import on
  42. #endif
  43. #if PRAGMA_STRUCT_ALIGN
  44.     #pragma options align=mac68k
  45. #elif PRAGMA_STRUCT_PACKPUSH
  46.     #pragma pack(push, 2)
  47. #elif PRAGMA_STRUCT_PACK
  48.     #pragma pack(2)
  49. #endif
  50. /**************************************************************************
  51.     Types and Constants
  52. **************************************************************************/
  53. /*    The componenent manager type code for components that
  54.         support the OSA interface defined here. */
  55. /* 0x6f736120 */
  56. enum {
  57.     kOSAComponentType           = FOUR_CHAR_CODE('osa ')
  58. };
  59. /* 0x73637074 */
  60. enum {
  61.     kOSAGenericScriptingComponentSubtype = FOUR_CHAR_CODE('scpt')
  62. };
  63. /*  Type of script document files.  */
  64. /* 0x6f736173 */
  65. enum {
  66.     kOSAFileType                = FOUR_CHAR_CODE('osas')
  67. };
  68. /*
  69.         Suite and event code of the RecordedText event. 
  70.         (See OSAStartRecording, below.)
  71.     */
  72. /* 0x61736372 */
  73. enum {
  74.     kOSASuite                   = FOUR_CHAR_CODE('ascr')
  75. };
  76. /* 0x72656364 */
  77. enum {
  78.     kOSARecordedText            = FOUR_CHAR_CODE('recd')
  79. };
  80. /* Selector returns boolean */
  81. /* 0x6d6f6469 */
  82. enum {
  83.     kOSAScriptIsModified        = FOUR_CHAR_CODE('modi')
  84. };
  85. /* Selector returns boolean */
  86. /* 0x63736372 */
  87. enum {
  88.     kOSAScriptIsTypeCompiledScript = FOUR_CHAR_CODE('cscr')
  89. };
  90. /* Selector returns boolean */
  91. /* 0x76616c75 */
  92. enum {
  93.     kOSAScriptIsTypeScriptValue = FOUR_CHAR_CODE('valu')
  94. };
  95. /* Selector returns boolean */
  96. /* 0x636e7478 */
  97. enum {
  98.     kOSAScriptIsTypeScriptContext = FOUR_CHAR_CODE('cntx')
  99. };
  100. /* Selector returns a DescType which may be passed to OSACoerceToDesc */
  101. /* 0x62657374 */
  102. enum {
  103.     kOSAScriptBestType          = FOUR_CHAR_CODE('best')
  104. };
  105. /*
  106.         This selector is used to determine whether a script has source 
  107.         associated with it that when given to OSAGetSource, the call will not
  108.         fail.  The selector returns a boolean.
  109.     */
  110. /* 0x67737263 */
  111. enum {
  112.     kOSACanGetSource            = FOUR_CHAR_CODE('gsrc')
  113. };
  114. enum {
  115.     typeOSADialectInfo          = FOUR_CHAR_CODE('difo'),       /*  0x6469666f   */
  116.     keyOSADialectName           = FOUR_CHAR_CODE('dnam'),       /*  0x646e616d   */
  117.     keyOSADialectCode           = FOUR_CHAR_CODE('dcod'),       /*  0x64636f64   */
  118.     keyOSADialectLangCode       = FOUR_CHAR_CODE('dlcd'),       /*  0x646c6364   */
  119.     keyOSADialectScriptCode     = FOUR_CHAR_CODE('dscd')        /*  0x64736364   */
  120. };
  121. typedef ComponentResult                 OSAError;
  122. /* Under the Open Scripting Architecture all error results are longs */
  123. typedef unsigned long                   OSAID;
  124. /*
  125.         OSAIDs allow transparent manipulation of scripts associated with
  126.         various scripting systems.
  127.     */
  128. enum {
  129.     kOSANullScript              = 0L
  130. };
  131. /* No -script constant. */
  132. enum {
  133.     kOSANullMode                = 0,                            /* sounds better */
  134.     kOSAModeNull                = 0                             /* tastes consistent */
  135. };
  136. /*
  137.         Some routines take flags that control their execution.  This constant
  138.         declares default mode settings are used.
  139.     */
  140. typedef CALLBACK_API( OSErr , OSACreateAppleEventProcPtr )(AEEventClass theAEEventClass, AEEventID theAEEventID, const AEAddressDesc *target, short returnID, long transactionID, AppleEvent *result, long refCon);
  141. typedef CALLBACK_API( OSErr , OSASendProcPtr )(const AppleEvent *theAppleEvent, AppleEvent *reply, AESendMode sendMode, AESendPriority sendPriority, long timeOutInTicks, AEIdleUPP idleProc, AEFilterUPP filterProc, long refCon);
  142. typedef STACK_UPP_TYPE(OSACreateAppleEventProcPtr)              OSACreateAppleEventUPP;
  143. typedef STACK_UPP_TYPE(OSASendProcPtr)                          OSASendUPP;
  144. #if OPAQUE_UPP_TYPES
  145.     EXTERN_API(OSACreateAppleEventUPP)
  146.     NewOSACreateAppleEventUPP      (OSACreateAppleEventProcPtr userRoutine);
  147.     EXTERN_API(OSASendUPP)
  148.     NewOSASendUPP                  (OSASendProcPtr          userRoutine);
  149.     EXTERN_API(void)
  150.     DisposeOSACreateAppleEventUPP    (OSACreateAppleEventUPP userUPP);
  151.     EXTERN_API(void)
  152.     DisposeOSASendUPP              (OSASendUPP              userUPP);
  153.     EXTERN_API(OSErr)
  154.     InvokeOSACreateAppleEventUPP    (AEEventClass           theAEEventClass,
  155.                                     AEEventID               theAEEventID,
  156.                                     const AEAddressDesc *   target,
  157.                                     short                   returnID,
  158.                                     long                    transactionID,
  159.                                     AppleEvent *            result,
  160.                                     long                    refCon,
  161.                                     OSACreateAppleEventUPP  userUPP);
  162.     EXTERN_API(OSErr)
  163.     InvokeOSASendUPP               (const AppleEvent *      theAppleEvent,
  164.                                     AppleEvent *            reply,
  165.                                     AESendMode              sendMode,
  166.                                     AESendPriority          sendPriority,
  167.                                     long                    timeOutInTicks,
  168.                                     AEIdleUPP               idleProc,
  169.                                     AEFilterUPP             filterProc,
  170.                                     long                    refCon,
  171.                                     OSASendUPP              userUPP);
  172. #else
  173.     enum { uppOSACreateAppleEventProcInfo = 0x000FEFE0 };           /* pascal 2_bytes Func(4_bytes, 4_bytes, 4_bytes, 2_bytes, 4_bytes, 4_bytes, 4_bytes) */
  174.     enum { uppOSASendProcInfo = 0x003FEFE0 };                       /* pascal 2_bytes Func(4_bytes, 4_bytes, 4_bytes, 2_bytes, 4_bytes, 4_bytes, 4_bytes, 4_bytes) */
  175.     #define NewOSACreateAppleEventUPP(userRoutine)                  (OSACreateAppleEventUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppOSACreateAppleEventProcInfo, GetCurrentArchitecture())
  176.     #define NewOSASendUPP(userRoutine)                              (OSASendUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppOSASendProcInfo, GetCurrentArchitecture())
  177.     #define DisposeOSACreateAppleEventUPP(userUPP)                  DisposeRoutineDescriptor(userUPP)
  178.     #define DisposeOSASendUPP(userUPP)                              DisposeRoutineDescriptor(userUPP)
  179.     #define InvokeOSACreateAppleEventUPP(theAEEventClass, theAEEventID, target, returnID, transactionID, result, refCon, userUPP)  (OSErr)CALL_SEVEN_PARAMETER_UPP((userUPP), uppOSACreateAppleEventProcInfo, (theAEEventClass), (theAEEventID), (target), (returnID), (transactionID), (result), (refCon))
  180.     #define InvokeOSASendUPP(theAppleEvent, reply, sendMode, sendPriority, timeOutInTicks, idleProc, filterProc, refCon, userUPP)  (OSErr)CALL_EIGHT_PARAMETER_UPP((userUPP), uppOSASendProcInfo, (theAppleEvent), (reply), (sendMode), (sendPriority), (timeOutInTicks), (idleProc), (filterProc), (refCon))
  181. #endif
  182. /* support for pre-Carbon UPP routines: NewXXXProc and CallXXXProc */
  183. #define NewOSACreateAppleEventProc(userRoutine)                 NewOSACreateAppleEventUPP(userRoutine)
  184. #define NewOSASendProc(userRoutine)                             NewOSASendUPP(userRoutine)
  185. #define CallOSACreateAppleEventProc(userRoutine, theAEEventClass, theAEEventID, target, returnID, transactionID, result, refCon) InvokeOSACreateAppleEventUPP(theAEEventClass, theAEEventID, target, returnID, transactionID, result, refCon, userRoutine)
  186. #define CallOSASendProc(userRoutine, theAppleEvent, reply, sendMode, sendPriority, timeOutInTicks, idleProc, filterProc, refCon) InvokeOSASendUPP(theAppleEvent, reply, sendMode, sendPriority, timeOutInTicks, idleProc, filterProc, refCon, userRoutine)
  187. /**************************************************************************
  188.     OSA Interface Descriptions
  189. **************************************************************************
  190.     The OSA Interface is broken down into a required interface, and several
  191.     optional interfaces to support additional functionality.  A given scripting
  192.     component may choose to support only some of the optional interfaces in
  193.     addition to the basic interface.  The OSA Component Flags may be used to 
  194.     query the Component Manager to find a scripting component with a particular
  195.     capability, or determine if a particular scripting component supports a 
  196.     particular capability.
  197. **************************************************************************/
  198. /* OSA Component Flags: */
  199. enum {
  200.     kOSASupportsCompiling       = 0x0002,
  201.     kOSASupportsGetSource       = 0x0004,
  202.     kOSASupportsAECoercion      = 0x0008,
  203.     kOSASupportsAESending       = 0x0010,
  204.     kOSASupportsRecording       = 0x0020,
  205.     kOSASupportsConvenience     = 0x0040,
  206.     kOSASupportsDialects        = 0x0080,
  207.     kOSASupportsEventHandling   = 0x0100
  208. };
  209. /* Component Selectors: */
  210. enum {
  211.     kOSASelectLoad              = 0x0001,
  212.     kOSASelectStore             = 0x0002,
  213.     kOSASelectExecute           = 0x0003,
  214.     kOSASelectDisplay           = 0x0004,
  215.     kOSASelectScriptError       = 0x0005,
  216.     kOSASelectDispose           = 0x0006,
  217.     kOSASelectSetScriptInfo     = 0x0007,
  218.     kOSASelectGetScriptInfo     = 0x0008,
  219.     kOSASelectSetActiveProc     = 0x0009,
  220.     kOSASelectGetActiveProc     = 0x000A
  221. };
  222. /* Compiling: */
  223. enum {
  224.     kOSASelectScriptingComponentName = 0x0102,
  225.     kOSASelectCompile           = 0x0103,
  226.     kOSASelectCopyID            = 0x0104
  227. };
  228. /* GetSource: */
  229. enum {
  230.     kOSASelectGetSource         = 0x0201
  231. };
  232. /* AECoercion: */
  233. enum {
  234.     kOSASelectCoerceFromDesc    = 0x0301,
  235.     kOSASelectCoerceToDesc      = 0x0302
  236. };
  237. /* AESending: */
  238. enum {
  239.     kOSASelectSetSendProc       = 0x0401,
  240.     kOSASelectGetSendProc       = 0x0402,
  241.     kOSASelectSetCreateProc     = 0x0403,
  242.     kOSASelectGetCreateProc     = 0x0404,
  243.     kOSASelectSetDefaultTarget  = 0x0405
  244. };
  245. /* Recording: */
  246. enum {
  247.     kOSASelectStartRecording    = 0x0501,
  248.     kOSASelectStopRecording     = 0x0502
  249. };
  250. /* Convenience: */
  251. enum {
  252.     kOSASelectLoadExecute       = 0x0601,
  253.     kOSASelectCompileExecute    = 0x0602,
  254.     kOSASelectDoScript          = 0x0603
  255. };
  256. /* Dialects: */
  257. enum {
  258.     kOSASelectSetCurrentDialect = 0x0701,
  259.     kOSASelectGetCurrentDialect = 0x0702,
  260.     kOSASelectAvailableDialects = 0x0703,
  261.     kOSASelectGetDialectInfo    = 0x0704,
  262.     kOSASelectAvailableDialectCodeList = 0x0705
  263. };
  264. /* Event Handling: */
  265. enum {
  266.     kOSASelectSetResumeDispatchProc = 0x0801,
  267.     kOSASelectGetResumeDispatchProc = 0x0802,
  268.     kOSASelectExecuteEvent      = 0x0803,
  269.     kOSASelectDoEvent           = 0x0804,
  270.     kOSASelectMakeContext       = 0x0805
  271. };
  272. /* scripting component specific selectors are added beginning with this value  */
  273. enum {
  274.     kOSASelectComponentSpecificStart = 0x1001
  275. };
  276. /*        Mode Flags:
  277.     Warning: These should not conflict with the AESend mode flags in
  278.     AppleEvents.h, because we may want to use them as OSA mode flags too.
  279. */
  280. /*
  281.         This mode flag may be passed to OSALoad, OSAStore or OSACompile to
  282.         instruct the scripting component to not retain the "source" of an
  283.         expression.  This will cause the OSAGetSource call to return the error
  284.         errOSASourceNotAvailable if used.  However, some scripting components
  285.         may not retain the source anyway.  This is mainly used when either space
  286.         efficiency is desired, or a script is to be "locked" so that its
  287.         implementation may not be viewed.
  288.     */
  289. enum {
  290.     kOSAModePreventGetSource    = 0x00000001
  291. };
  292. /*
  293.         These mode flags may be passed to OSACompile, OSAExecute, OSALoadExecute
  294.         OSACompileExecute, OSADoScript, OSAExecuteEvent, or OSADoEvent to
  295.         indicate whether or not the script may interact with the user, switch
  296.         layer or reconnect if necessary.  Any AppleEvents will be sent with the
  297.         corresponding AESend mode supplied.
  298.     */
  299. enum {
  300.     kOSAModeNeverInteract       = kAENeverInteract,
  301.     kOSAModeCanInteract         = kAECanInteract,
  302.     kOSAModeAlwaysInteract      = kAEAlwaysInteract,
  303.     kOSAModeDontReconnect       = kAEDontReconnect
  304. };
  305. /*
  306.         This mode flag may be passed to OSACompile, OSAExecute, OSALoadExecute
  307.         OSACompileExecute, OSADoScript, OSAExecuteEvent, or OSADoEvent to
  308.         indicate whether or not AppleEvents should be sent with the
  309.         kAECanSwitchLayer mode flag sent or not. NOTE: This flag is exactly the
  310.         opposite sense of the AppleEvent flag kAECanSwitchLayer.  This is to
  311.         provide a more convenient default, i.e. not supplying any mode
  312.         (kOSAModeNull) means to send events with kAECanSwitchLayer.  Supplying
  313.         the kOSAModeCantSwitchLayer mode flag will cause AESend to be called
  314.         without kAECanSwitchLayer.
  315.     */
  316. enum {
  317.     kOSAModeCantSwitchLayer     = 0x00000040
  318. };
  319. /*
  320.         This mode flag may be passed to OSACompile, OSAExecute, OSALoadExecute
  321.         OSACompileExecute, OSADoScript, OSAExecuteEvent, or OSADoEvent to
  322.         indicate whether or not AppleEvents should be sent with the kAEDontRecord
  323.         mode flag sent or not. NOTE: This flag is exactly the opposite sense of
  324.         the AppleEvent flag kAEDontRecord.  This is to provide a more convenient
  325.         default, i.e. not supplying any mode (kOSAModeNull) means to send events
  326.         with kAEDontRecord.  Supplying the kOSAModeDoRecord mode flag will 
  327.         cause AESend to be called without kAEDontRecord.
  328.     */
  329. enum {
  330.     kOSAModeDoRecord            = 0x00001000
  331. };
  332. /*
  333.         This is a mode flag for OSACompile that indicates that a context should
  334.         be created as the result of compilation. All handler definitions are
  335.         inserted into the new context, and variables are initialized by
  336.         evaluating their initial values in a null context (i.e. they must be
  337.         constant expressions).
  338.     */
  339. enum {
  340.     kOSAModeCompileIntoContext  = 0x00000002
  341. };
  342. /*
  343.         This is a mode flag for OSACompile that indicates that the previous
  344.         script ID (input to OSACompile) should be augmented with any new
  345.         definitions in the sourceData rather than replaced with a new script.
  346.         This means that the previous script ID must designate a context.
  347.         The presence of this flag causes the kOSAModeCompileIntoContext flag
  348.         to be implicitly used, causing any new definitions to be initialized
  349.         in a null context.
  350.     */
  351. enum {
  352.     kOSAModeAugmentContext      = 0x00000004
  353. };
  354. /*
  355.         This mode flag may be passed to OSADisplay or OSADoScript to indicate
  356.         that output only need be human-readable, not re-compilable by OSACompile.
  357.         If used, output may be arbitrarily "beautified", e.g. quotes may be left
  358.         off of string values, long lists may have elipses, etc.
  359.     */
  360. enum {
  361.     kOSAModeDisplayForHumans    = 0x00000008
  362. };
  363. /*
  364.         This mode flag may be passed to OSAStore in the case where the scriptID
  365.         is a context.  This causes the context to be saved, but not the context's
  366.         parent context.  When the stored context is loaded back in, the parent
  367.         will be kOSANullScript.
  368.     */
  369. enum {
  370.     kOSAModeDontStoreParent     = 0x00010000
  371. };
  372. /*
  373.         This mode flag may be passed to OSAExecuteEvent to cause the event to
  374.         be dispatched to the direct object of the event. The direct object (or
  375.         subject attribute if the direct object is a non-object specifier) will
  376.         be resolved, and the resulting script object will be the recipient of
  377.         the message. The context argument to OSAExecuteEvent will serve as the
  378.         root of the lookup/resolution process.
  379.     */
  380. enum {
  381.     kOSAModeDispatchToDirectObject = 0x00020000
  382. };
  383. /*
  384.         This mode flag may be passed to OSAExecuteEvent to indicate that
  385.         components do not have to get the data of object specifier arguments.
  386.     */
  387. enum {
  388.     kOSAModeDontGetDataForArguments = 0x00040000
  389. };
  390. /**************************************************************************
  391.     OSA Basic Scripting Interface
  392. **************************************************************************
  393.     Scripting components must at least support the Basic Scripting interface.
  394. **************************************************************************/
  395. /*        Loading and Storing Scripts:
  396.     These routines allow scripts to be loaded and stored in their internal
  397.     (possibly compiled, non-text) representation.
  398. */
  399. /* Resource type for scripts */
  400. enum {
  401.     kOSAScriptResourceType      = kOSAGenericScriptingComponentSubtype
  402. };
  403. /*
  404.         Default type given to OSAStore which creates "generic" loadable script
  405.         data descriptors.
  406.     */
  407. enum {
  408.     typeOSAGenericStorage       = kOSAScriptResourceType
  409. };
  410. EXTERN_API( OSAError )
  411. OSALoad                         (ComponentInstance      scriptingComponent,
  412.                                  const AEDesc *         scriptData,
  413.                                  long                   modeFlags,
  414.                                  OSAID *                resultingScriptID)                  FIVEWORDINLINE(0x2F3C, 0x000C, 0x0001, 0x7000, 0xA82A);
  415. /*
  416.         OSAComponentFunctionInline(kOSASelectLoad, 12);
  417.     
  418.         Errors:
  419.             badComponentInstance        invalid scripting component instance
  420.             errOSASystemError
  421.             errOSABadStorageType:       scriptData not for this scripting component
  422.             errOSACorruptData:          data seems to be corrupt
  423.             errOSADataFormatObsolete    script data format is no longer supported
  424.             errOSADataFormatTooNew      script data format is from a newer version
  425.         
  426.         ModeFlags:
  427.             kOSAModePreventGetSource
  428.     */
  429. EXTERN_API( OSAError )
  430. OSAStore                        (ComponentInstance      scriptingComponent,
  431.                                  OSAID                  scriptID,
  432.                                  DescType               desiredType,
  433.                                  long                   modeFlags,
  434.                                  AEDesc *               resultingScriptData)                FIVEWORDINLINE(0x2F3C, 0x0010, 0x0002, 0x7000, 0xA82A);
  435. /*
  436.         OSAComponentFunctionInline(kOSASelectStore, 16);
  437.     
  438.         Errors:
  439.             badComponentInstance    invalid scripting component instance
  440.             errOSASystemError
  441.             errOSAInvalidID
  442.             errOSABadStorageType:   desiredType not for this scripting component
  443.         
  444.         ModeFlags:
  445.             kOSAModePreventGetSource
  446.             kOSAModeDontStoreParent
  447.     */
  448. /* Executing Scripts: */
  449. EXTERN_API( OSAError )
  450. OSAExecute                      (ComponentInstance      scriptingComponent,
  451.                                  OSAID                  compiledScriptID,
  452.                                  OSAID                  contextID,
  453.                                  long                   modeFlags,
  454.                                  OSAID *                resultingScriptValueID)             FIVEWORDINLINE(0x2F3C, 0x0010, 0x0003, 0x7000, 0xA82A);
  455. /*
  456.         OSAComponentFunctionInline(kOSASelectExecute, 16);
  457.         This call runs a script.  The contextID represents the environment
  458.         with which global variables in the script are resolved.  The constant
  459.         kOSANullScript may be used for the contextID if the application wishes
  460.         to not deal with context directly (a default one is associated with each
  461.         scripting component instance).  The resultingScriptValueID is the 
  462.         result of evaluation, and contains a value which may be displayed using
  463.         the OSAGetSource call.  The modeFlags convey scripting component
  464.         specific information.
  465.     
  466.         Errors:
  467.             badComponentInstance    invalid scripting component instance
  468.             errOSASystemError
  469.             errOSAInvalidID
  470.             errOSAScriptError:      the executing script got an error
  471.     
  472.         ModeFlags:
  473.             kOSAModeNeverInteract
  474.             kOSAModeCanInteract
  475.             kOSAModeAlwaysInteract
  476.             kOSAModeCantSwitchLayer
  477.             kOSAModeDontReconnect
  478.             kOSAModeDoRecord
  479.     */
  480. /* Displaying results: */
  481. EXTERN_API( OSAError )
  482. OSADisplay                      (ComponentInstance      scriptingComponent,
  483.                                  OSAID                  scriptValueID,
  484.                                  DescType               desiredType,
  485.                                  long                   modeFlags,
  486.                                  AEDesc *               resultingText)                      FIVEWORDINLINE(0x2F3C, 0x0010, 0x0004, 0x7000, 0xA82A);
  487. /*
  488.         OSAComponentFunctionInline(kOSASelectDisplay, 16);
  489.         This call is used to convert results (script value IDs) into displayable
  490.         text. The desiredType should be at least typeChar, and modeFlags are
  491.         scripting system specific flags to control the formatting of the
  492.         resulting text. This call differs from OSAGetSource in that (1) it
  493.         always produces at least typeChar, (2) is only works on script values,
  494.         (3) it may display it's output in non-compilable form (e.g. without
  495.         string quotes, elipses inserted in long and/or circular lists, etc.) and
  496.         (4) it is required by the basic scripting interface.
  497.     
  498.         Errors:
  499.             badComponentInstance    invalid scripting component instance
  500.             errOSASystemError
  501.             errOSAInvalidID
  502.             errAECoercionFail:      desiredType not supported by scripting component
  503.     
  504.         ModeFlags:
  505.             kOSAModeDisplayForHumans
  506.     */
  507. /* Getting Error Information: */
  508. EXTERN_API( OSAError )
  509. OSAScriptError                  (ComponentInstance      scriptingComponent,
  510.                                  OSType                 selector,
  511.                                  DescType               desiredType,
  512.                                  AEDesc *               resultingErrorDescription)          FIVEWORDINLINE(0x2F3C, 0x000C, 0x0005, 0x7000, 0xA82A);
  513. /*
  514.         OSAComponentFunctionInline(kOSASelectScriptError, 12);
  515.         Whenever script execution returns errOSAExecutionError, this routine
  516.         may be used to get information about that error.  The selector describes
  517.         the type of information desired about the error (various selectors are
  518.         listed below).  The desiredType indicates the data type of the result
  519.         desired for that selector.
  520.     
  521.         Errors:
  522.             badComponentInstance    invalid scripting component instance
  523.             errOSASystemError
  524.             errOSABadSelector:      selector not supported by scripting component
  525.             errAECoercionFail:      desiredType not supported by scripting component
  526.     */
  527. /* OSAScriptError selectors: */
  528. /*
  529.         This selector is used to determine the error number of a script error.
  530.         These error numbers may be either system error numbers, or error numbers
  531.         that are scripting component specific.
  532.         Required desiredTypes:  
  533.             typeShortInteger
  534.     */
  535. enum {
  536.     kOSAErrorNumber             = keyErrorNumber
  537. };
  538. /*
  539.         This selector is used to determine the full error message associated
  540.         with the error number.  It should include the name of the application
  541.         which caused the error, as well as the specific error that occurred.
  542.         This selector is sufficient for simple error reporting (but see
  543.         kOSAErrorBriefMessage, below).
  544.         Required desiredTypes:
  545.             typeChar                    error message string
  546.     */
  547. enum {
  548.     kOSAErrorMessage            = keyErrorString
  549. };
  550. /*
  551.         This selector is used to determine a brief error message associated with
  552.         the error number.  This message and should not mention the name of the
  553.         application which caused the error, any partial results or offending
  554.         object (see kOSAErrorApp, kOSAErrorPartialResult and
  555.         kOSAErrorOffendingObject, below).
  556.         Required desiredTypes:
  557.             typeChar                    brief error message string
  558.     */
  559. /*  0x65727262  */
  560. enum {
  561.     kOSAErrorBriefMessage       = FOUR_CHAR_CODE('errb')
  562. };
  563. /*
  564.         This selector is used to determine which application actually got the
  565.         error (if it was the result of an AESend), or the current application
  566.         if ....
  567.         Required desiredTypes:
  568.             typeProcessSerialNumber     PSN of the errant application
  569.             typeChar                    name of the errant application
  570.     */
  571. /*  0x65726170  */
  572. enum {
  573.     kOSAErrorApp                = FOUR_CHAR_CODE('erap')
  574. };
  575. /*
  576.         This selector is used to determine any partial result returned by an 
  577.         operation. If an AESend call failed, but a partial result was returned,
  578.         then the partial result may be returned as an AEDesc.
  579.         Required desiredTypes:
  580.             typeBest                    AEDesc of any partial result
  581.     */
  582. /*  0x70746c72   */
  583. enum {
  584.     kOSAErrorPartialResult      = FOUR_CHAR_CODE('ptlr')
  585. };
  586. /*
  587.         This selector is used to determine any object which caused the error
  588.         that may have been indicated by an application.  The result is an 
  589.         AEDesc.
  590.         Required desiredTypes:
  591.             typeBest                    AEDesc of any offending object
  592.     */
  593. /*  0x65726f62   */
  594. enum {
  595.     kOSAErrorOffendingObject    = FOUR_CHAR_CODE('erob')
  596. };
  597. /*
  598.         This selector is used to determine the type expected by a coercion 
  599.         operation if a type error occurred.
  600.     */
  601. /*  0x65727274   */
  602. enum {
  603.     kOSAErrorExpectedType       = FOUR_CHAR_CODE('errt')
  604. };
  605. /*
  606.         This selector is used to determine the source text range (start and 
  607.         end positions) of where the error occurred.
  608.         Required desiredTypes:
  609.             typeOSAErrorRange
  610.     */
  611. /*  0x65726e67  */
  612. enum {
  613.     kOSAErrorRange              = FOUR_CHAR_CODE('erng')
  614. };
  615. /*
  616.         An AERecord type containing keyOSASourceStart and keyOSASourceEnd fields
  617.         of type short.
  618.     */
  619. /*  0x65726e67   */
  620. enum {
  621.     typeOSAErrorRange           = FOUR_CHAR_CODE('erng')
  622. };
  623. /* Field of a typeOSAErrorRange record of typeShortInteger */
  624. /*  0x73726373    */
  625. enum {
  626.     keyOSASourceStart           = FOUR_CHAR_CODE('srcs')
  627. };
  628. /* Field of a typeOSAErrorRange record of typeShortInteger */
  629. /*  0x73726365   */
  630. enum {
  631.     keyOSASourceEnd             = FOUR_CHAR_CODE('srce')
  632. };
  633. /* Disposing Script IDs: */
  634. EXTERN_API( OSAError )
  635. OSADispose                      (ComponentInstance      scriptingComponent,
  636.                                  OSAID                  scriptID)                           FIVEWORDINLINE(0x2F3C, 0x0004, 0x0006, 0x7000, 0xA82A);
  637. /*
  638.         OSAComponentFunctionInline(kOSASelectDispose, 4);
  639.         Disposes a script or context.
  640.     
  641.         Errors:
  642.             badComponentInstance    invalid scripting component instance
  643.             errOSASystemError
  644.             errOSAInvalidID
  645.     */
  646. /* Getting and Setting Script Information: */
  647. EXTERN_API( OSAError )
  648. OSASetScriptInfo                (ComponentInstance      scriptingComponent,
  649.                                  OSAID                  scriptID,
  650.                                  OSType                 selector,
  651.                                  long                   value)                              FIVEWORDINLINE(0x2F3C, 0x000C, 0x0007, 0x7000, 0xA82A);
  652. /*
  653.         OSAComponentFunctionInline(kOSASelectSetScriptInfo, 12);
  654.     
  655.         Errors:
  656.             badComponentInstance    invalid scripting component instance
  657.             errOSASystemError
  658.             errOSAInvalidID
  659.             errOSABadSelector:      selector not supported by scripting component
  660.                                     or selector not for this scriptID
  661.     */
  662. EXTERN_API( OSAError )
  663. OSAGetScriptInfo                (ComponentInstance      scriptingComponent,
  664.                                  OSAID                  scriptID,
  665.                                  OSType                 selector,
  666.                                  long *                 result)                             FIVEWORDINLINE(0x2F3C, 0x000C, 0x0008, 0x7000, 0xA82A);
  667. /*
  668.         OSAComponentFunctionInline(kOSASelectGetScriptInfo, 12);
  669.     
  670.         Errors:
  671.             badComponentInstance    invalid scripting component instance
  672.             errOSASystemError
  673.             errOSAInvalidID
  674.             errOSABadSelector:      selector not supported by scripting component
  675.                                     or selector not for this scriptID
  676.     */
  677. /* Manipulating the ActiveProc:
  678.     Scripting systems will supply default values for these procedures if they
  679.     are not set by the client:
  680. */
  681. typedef CALLBACK_API( OSErr , OSAActiveProcPtr )(long refCon);
  682. typedef STACK_UPP_TYPE(OSAActiveProcPtr)                        OSAActiveUPP;
  683. #if OPAQUE_UPP_TYPES
  684.     EXTERN_API(OSAActiveUPP)
  685.     NewOSAActiveUPP                (OSAActiveProcPtr        userRoutine);
  686.     EXTERN_API(void)
  687.     DisposeOSAActiveUPP            (OSAActiveUPP            userUPP);
  688.     EXTERN_API(OSErr)
  689.     InvokeOSAActiveUPP             (long                    refCon,
  690.                                     OSAActiveUPP            userUPP);
  691. #else
  692.     enum { uppOSAActiveProcInfo = 0x000000E0 };                     /* pascal 2_bytes Func(4_bytes) */
  693.     #define NewOSAActiveUPP(userRoutine)                            (OSAActiveUPP)NewRoutineDescriptor((ProcPtr)(userRoutine), uppOSAActiveProcInfo, GetCurrentArchitecture())
  694.     #define DisposeOSAActiveUPP(userUPP)                            DisposeRoutineDescriptor(userUPP)
  695.     #define InvokeOSAActiveUPP(refCon, userUPP)                     (OSErr)CALL_ONE_PARAMETER_UPP((userUPP), uppOSAActiveProcInfo, (refCon))
  696. #endif
  697. /* support for pre-Carbon UPP routines: NewXXXProc and CallXXXProc */
  698. #define NewOSAActiveProc(userRoutine)                           NewOSAActiveUPP(userRoutine)
  699. #define CallOSAActiveProc(userRoutine, refCon)                  InvokeOSAActiveUPP(refCon, userRoutine)
  700. EXTERN_API( OSAError )
  701. OSASetActiveProc                (ComponentInstance      scriptingComponent,
  702.                                  OSAActiveUPP           activeProc,
  703.                                  long                   refCon)                             FIVEWORDINLINE(0x2F3C, 0x0008, 0x0009, 0x7000, 0xA82A);
  704. /*
  705.         OSAComponentFunctionInline(kOSASelectSetActiveProc, 8);
  706.         If activeProc is nil, the default activeProc is used.
  707.     
  708.         Errors:
  709.             badComponentInstance    invalid scripting component instance
  710.             errOSASystemError
  711.     */
  712. EXTERN_API( OSAError )
  713. OSAGetActiveProc                (ComponentInstance      scriptingComponent,
  714.                                  OSAActiveUPP *         activeProc,
  715.                                  long *                 refCon)                             FIVEWORDINLINE(0x2F3C, 0x0008, 0x000A, 0x7000, 0xA82A);
  716. /*
  717.         OSAComponentFunctionInline(kOSASelectGetActiveProc, 8);
  718.     
  719.         Errors:
  720.             badComponentInstance    invalid scripting component instance
  721.             errOSASystemError
  722.     */
  723. /**************************************************************************
  724.     OSA Optional Compiling Interface
  725. **************************************************************************
  726.     Scripting components that support the Compiling interface have the 
  727.     kOSASupportsCompiling bit set in it's ComponentDescription.
  728. **************************************************************************/
  729. EXTERN_API( OSAError )
  730. OSAScriptingComponentName       (ComponentInstance      scriptingComponent,
  731.                                  AEDesc *               resultingScriptingComponentName)    FIVEWORDINLINE(0x2F3C, 0x0004, 0x0102, 0x7000, 0xA82A);
  732. /*
  733.         OSAComponentFunctionInline(kOSASelectScriptingComponentName, 4);
  734.         Given a scripting component, this routine returns the name of that
  735.         scripting component in a type that is coercable to text (typeChar).
  736.         The generic scripting component returns the name of the default
  737.         scripting component.  This name should be sufficient to convey to the
  738.         user the kind of script (syntax) he is expected to write.
  739.     
  740.         Errors:
  741.             badComponentInstance    invalid scripting component instance
  742.             errOSASystemError
  743.     */
  744. EXTERN_API( OSAError )
  745. OSACompile                      (ComponentInstance      scriptingComponent,
  746.                                  const AEDesc *         sourceData,
  747.                                  long                   modeFlags,
  748.                                  OSAID *                previousAndResultingScriptID)       FIVEWORDINLINE(0x2F3C, 0x000C, 0x0103, 0x7000, 0xA82A);
  749. /*
  750.         OSAComponentFunctionInline(kOSASelectCompile, 12);
  751.         Coerces input desc (possibly text) into a script's internal format.
  752.         Once compiled, the script is ready to run.  The modeFlags convey
  753.         scripting component specific information.  The previous script ID
  754.         (result parameter) is made to refer to the newly compiled script,
  755.         unless it was originally kOSANullScript.  In this case a new script
  756.         ID is created and used.
  757.     
  758.         Errors:
  759.             badComponentInstance    invalid scripting component instance
  760.             errOSASystemError
  761.             errAECoercionFail:      sourceData is not compilable
  762.             errOSAScriptError:      sourceData was a bad script (syntax error)
  763.             errOSAInvalidID:        previousAndResultingCompiledScriptID was not
  764.                                     valid on input
  765.     
  766.         ModeFlags:
  767.             kOSAModePreventGetSource
  768.             kOSAModeCompileIntoContext
  769.             kOSAModeAugmentContext
  770.             kOSAModeNeverInteract
  771.             kOSAModeCanInteract
  772.             kOSAModeAlwaysInteract
  773.             kOSAModeCantSwitchLayer
  774.             kOSAModeDontReconnect
  775.             kOSAModeDoRecord
  776.     */
  777. EXTERN_API( OSAError )
  778. OSACopyID                       (ComponentInstance      scriptingComponent,
  779.                                  OSAID                  fromID,
  780.                                  OSAID *                toID)                               FIVEWORDINLINE(0x2F3C, 0x0008, 0x0104, 0x7000, 0xA82A);
  781. /*
  782.         OSAComponentFunctionInline(kOSASelectCopyID, 8);
  783.         If toID is a reference to kOSANullScript then it is updated to have a
  784.         new scriptID value.  This call can be used to perform undo or revert
  785.         operations on scripts. 
  786.     
  787.         Errors:
  788.             badComponentInstance    invalid scripting component instance
  789.             errOSASystemError
  790.             errOSAInvalidID
  791.     */
  792. /**************************************************************************
  793.     OSA Optional GetSource Interface
  794. **************************************************************************
  795.     Scripting components that support the GetSource interface have the 
  796.     kOSASupportsGetSource bit set in it's ComponentDescription.
  797. **************************************************************************/
  798. EXTERN_API( OSAError )
  799. OSAGetSource                    (ComponentInstance      scriptingComponent,
  800.                                  OSAID                  scriptID,
  801.                                  DescType               desiredType,
  802.                                  AEDesc *               resultingSourceData)                FIVEWORDINLINE(0x2F3C, 0x000C, 0x0201, 0x7000, 0xA82A);
  803. /*
  804.         OSAComponentFunctionInline(kOSASelectGetSource, 12);
  805.         This routine causes a compiled script to be output in a form (possibly
  806.         text) such that it is suitable to be passed back to OSACompile.
  807.         Errors:
  808.             badComponentInstance    invalid scripting component instance
  809.             errOSASystemError
  810.             errOSAInvalidID
  811.             errOSASourceNotAvailable    can't get source for this scriptID
  812.     */
  813. /**************************************************************************
  814.     OSA Optional AECoercion Interface
  815. **************************************************************************
  816.     Scripting components that support the AECoercion interface have the 
  817.     kOSASupportsAECoercion bit set in it's ComponentDescription.
  818. **************************************************************************/
  819. EXTERN_API( OSAError )
  820. OSACoerceFromDesc               (ComponentInstance      scriptingComponent,
  821.                                  const AEDesc *         scriptData,
  822.                                  long                   modeFlags,
  823.                                  OSAID *                resultingScriptID)                  FIVEWORDINLINE(0x2F3C, 0x000C, 0x0301, 0x7000, 0xA82A);
  824. /*
  825.         OSAComponentFunctionInline(kOSASelectCoerceFromDesc, 12);
  826.         This routine causes script data to be coerced into a script value.
  827.         If the scriptData is an AppleEvent, then the resultingScriptID is a
  828.         compiled script ID (mode flags for OSACompile may be used in this case).
  829.         Other scriptData descriptors create script value IDs.
  830.     
  831.         Errors:
  832.             badComponentInstance    invalid scripting component instance
  833.             errOSASystemError
  834.     
  835.         ModeFlags:
  836.             kOSAModePreventGetSource
  837.             kOSAModeCompileIntoContext
  838.             kOSAModeNeverInteract
  839.             kOSAModeCanInteract
  840.             kOSAModeAlwaysInteract
  841.             kOSAModeCantSwitchLayer
  842.             kOSAModeDontReconnect
  843.             kOSAModeDoRecord
  844.     */
  845. EXTERN_API( OSAError )
  846. OSACoerceToDesc                 (ComponentInstance      scriptingComponent,
  847.                                  OSAID                  scriptID,
  848.                                  DescType               desiredType,
  849.                                  long                   modeFlags,
  850.                                  AEDesc *               result)                             FIVEWORDINLINE(0x2F3C, 0x0010, 0x0302, 0x7000, 0xA82A);
  851. /*
  852.         OSAComponentFunctionInline(kOSASelectCoerceToDesc, 16);
  853.         This routine causes a script value to be coerced into any desired form.
  854.         If the scriptID denotes a compiled script, then it may be coerced to 
  855.         typeAppleEvent.
  856.     
  857.         Errors:
  858.             badComponentInstance    invalid scripting component instance
  859.             errOSASystemError
  860.             errOSAInvalidID
  861.     */
  862. /**************************************************************************
  863.     OSA Optional AESending Interface
  864. **************************************************************************
  865.     Scripting components that support the AESending interface have the 
  866.     kOSASupportsAESending bit set in their ComponentDescription.
  867. **************************************************************************/
  868. /*
  869.     Scripting systems will supply default values for these procedures if they
  870.     are not set by the client:
  871. */
  872. EXTERN_API( OSAError )
  873. OSASetSendProc                  (ComponentInstance      scriptingComponent,
  874.                                  OSASendUPP             sendProc,
  875.                                  long                   refCon)                             FIVEWORDINLINE(0x2F3C, 0x0008, 0x0401, 0x7000, 0xA82A);
  876. /*
  877.         OSAComponentFunctionInline(kOSASelectSetSendProc, 8);
  878.         If sendProc is nil, the default sendProc is used.
  879.     
  880.         Errors:
  881.             badComponentInstance    invalid scripting component instance
  882.             errOSASystemError
  883.     */
  884. EXTERN_API( OSAError )
  885. OSAGetSendProc                  (ComponentInstance      scriptingComponent,
  886.                                  OSASendUPP *           sendProc,
  887.                                  long *                 refCon)                             FIVEWORDINLINE(0x2F3C, 0x0008, 0x0402, 0x7000, 0xA82A);
  888. /*
  889.         OSAComponentFunctionInline(kOSASelectGetSendProc, 8);
  890.     
  891.         Errors:
  892.             badComponentInstance    invalid scripting component instance
  893.             errOSASystemError
  894.     */
  895. EXTERN_API( OSAError )
  896. OSASetCreateProc                (ComponentInstance      scriptingComponent,
  897.                                  OSACreateAppleEventUPP  createProc,
  898.                                  long                   refCon)                             FIVEWORDINLINE(0x2F3C, 0x0008, 0x0403, 0x7000, 0xA82A);
  899. /*
  900.         OSAComponentFunctionInline(kOSASelectSetCreateProc, 8);
  901.         If createProc is nil, the default createProc is used.
  902.     
  903.         Errors:
  904.             badComponentInstance    invalid scripting component instance
  905.             errOSASystemError
  906.     */
  907. EXTERN_API( OSAError )
  908. OSAGetCreateProc                (ComponentInstance      scriptingComponent,
  909.                                  OSACreateAppleEventUPP * createProc,
  910.                                  long *                 refCon)                             FIVEWORDINLINE(0x2F3C, 0x0008, 0x0404, 0x7000, 0xA82A);
  911. /*
  912.         OSAComponentFunctionInline(kOSASelectGetCreateProc, 8);
  913.     
  914.         Errors:
  915.             badComponentInstance    invalid scripting component instance
  916.             errOSASystemError
  917.     */
  918. EXTERN_API( OSAError )
  919. OSASetDefaultTarget             (ComponentInstance      scriptingComponent,
  920.                                  const AEAddressDesc *  target)                             FIVEWORDINLINE(0x2F3C, 0x0004, 0x0405, 0x7000, 0xA82A);
  921. /*
  922.         OSAComponentFunctionInline(kOSASelectSetDefaultTarget, 4);
  923.         This routine sets the default target application for AE sending.
  924.         It also establishes the default target from which terminologies come.
  925.         It is effectively like having an AppleScript "tell" statement around
  926.         the entire program.  If this routine is not called, or if the target 
  927.         is a null AEDesc, then the current application is the default target.
  928.     
  929.         Errors:
  930.             badComponentInstance    invalid scripting component instance
  931.             errOSASystemError
  932.     */
  933. /**************************************************************************
  934.     OSA Optional Recording Interface
  935. **************************************************************************
  936.     Scripting components that support the Recording interface have the 
  937.     kOSASupportsRecording bit set in their ComponentDescription.
  938. **************************************************************************/
  939. EXTERN_API( OSAError )
  940. OSAStartRecording               (ComponentInstance      scriptingComponent,
  941.                                  OSAID *                compiledScriptToModifyID)           FIVEWORDINLINE(0x2F3C, 0x0004, 0x0501, 0x7000, 0xA82A);
  942. /*
  943.         OSAComponentFunctionInline(kOSASelectStartRecording, 4);
  944.         Starts recording.  If compiledScriptToModifyID is kOSANullScript, a
  945.         new script ID is created and returned.  If the current application has
  946.         a handler for the kOSARecordedText event, then kOSARecordedText events
  947.         are sent to the application containing the text of each AppleEvent 
  948.         recorded.
  949.     
  950.         Errors:
  951.             badComponentInstance    invalid scripting component instance
  952.             errOSASystemError
  953.             errOSAInvalidID
  954.             errOSARecordingIsAlreadyOn
  955.     */
  956. EXTERN_API( OSAError )
  957. OSAStopRecording                (ComponentInstance      scriptingComponent,
  958.                                  OSAID                  compiledScriptID)                   FIVEWORDINLINE(0x2F3C, 0x0004, 0x0502, 0x7000, 0xA82A);
  959. /*
  960.         OSAComponentFunctionInline(kOSASelectStopRecording, 4);
  961.         If compiledScriptID is not being recorded into or recording is not
  962.         currently on, no error is returned.
  963.     
  964.         Errors:
  965.             badComponentInstance    invalid scripting component instance
  966.             errOSASystemError
  967.             errOSAInvalidID
  968.     */
  969. /**************************************************************************
  970.     OSA Optional Convenience Interface
  971. **************************************************************************
  972.     Scripting components that support the Convenience interface have the 
  973.     kOSASupportsConvenience bit set in their ComponentDescription.
  974. **************************************************************************/
  975. EXTERN_API( OSAError )
  976. OSALoadExecute                  (ComponentInstance      scriptingComponent,
  977.                                  const AEDesc *         scriptData,
  978.                                  OSAID                  contextID,
  979.                                  long                   modeFlags,
  980.                                  OSAID *                resultingScriptValueID)             FIVEWORDINLINE(0x2F3C, 0x0010, 0x0601, 0x7000, 0xA82A);
  981. /*
  982.         OSAComponentFunctionInline(kOSASelectLoadExecute, 16);
  983.         This routine is effectively equivalent to calling OSALoad followed by
  984.         OSAExecute.  After execution, the compiled source is disposed.  Only the
  985.         resulting value ID is retained.
  986.     
  987.         Errors:
  988.             badComponentInstance        invalid scripting component instance
  989.             errOSASystemError
  990.             errOSABadStorageType:       scriptData not for this scripting component
  991.             errOSACorruptData:          data seems to be corrupt
  992.             errOSADataFormatObsolete    script data format is no longer supported
  993.             errOSADataFormatTooNew      script data format is from a newer version
  994.             errOSAInvalidID
  995.             errOSAScriptError:          the executing script got an error
  996.     
  997.         ModeFlags:
  998.             kOSAModeNeverInteract
  999.             kOSAModeCanInteract
  1000.             kOSAModeAlwaysInteract
  1001.             kOSAModeCantSwitchLayer
  1002.             kOSAModeDontReconnect
  1003.             kOSAModeDoRecord
  1004.     */
  1005. EXTERN_API( OSAError )
  1006. OSACompileExecute               (ComponentInstance      scriptingComponent,
  1007.                                  const AEDesc *         sourceData,
  1008.                                  OSAID                  contextID,
  1009.                                  long                   modeFlags,
  1010.                                  OSAID *                resultingScriptValueID)             FIVEWORDINLINE(0x2F3C, 0x0010, 0x0602, 0x7000, 0xA82A);
  1011. /*
  1012.         OSAComponentFunctionInline(kOSASelectCompileExecute, 16);
  1013.         This routine is effectively equivalent to calling OSACompile followed by
  1014.         OSAExecute.  After execution, the compiled source is disposed.  Only the
  1015.         resulting value ID is retained.
  1016.     
  1017.         Errors:
  1018.             badComponentInstance    invalid scripting component instance
  1019.             errOSASystemError
  1020.             errAECoercionFail:      sourceData is not compilable
  1021.             errOSAScriptError:      sourceData was a bad script (syntax error)
  1022.             errOSAInvalidID:        previousAndResultingCompiledScriptID was not
  1023.                                     valid on input
  1024.             errOSAScriptError:      the executing script got an error
  1025.     
  1026.         ModeFlags:
  1027.             kOSAModeNeverInteract
  1028.             kOSAModeCanInteract
  1029.             kOSAModeAlwaysInteract
  1030.             kOSAModeCantSwitchLayer
  1031.             kOSAModeDontReconnect
  1032.             kOSAModeDoRecord
  1033.     */
  1034. EXTERN_API( OSAError )
  1035. OSADoScript                     (ComponentInstance      scriptingComponent,
  1036.                                  const AEDesc *         sourceData,
  1037.                                  OSAID                  contextID,
  1038.                                  DescType               desiredType,
  1039.                                  long                   modeFlags,
  1040.                                  AEDesc *               resultingText)                      FIVEWORDINLINE(0x2F3C, 0x0014, 0x0603, 0x7000, 0xA82A);
  1041. /*
  1042.         OSAComponentFunctionInline(kOSASelectDoScript, 20);
  1043.         This routine is effectively equivalent to calling OSACompile followed by
  1044.         OSAExecute and then OSADisplay.  After execution, the compiled source
  1045.         and the resulting value are is disposed.  Only the resultingText
  1046.         descriptor is retained.  If a script error occur during processing, the 
  1047.         resultingText gets the error message of the error, and errOSAScriptError
  1048.         is returned.  OSAScriptError may still be used to extract more 
  1049.         information about the particular error.
  1050.     
  1051.         Errors:
  1052.             badComponentInstance    invalid scripting component instance
  1053.             errOSASystemError
  1054.             errAECoercionFail:      sourceData is not compilable or 
  1055.                                     desiredType not supported by scripting component
  1056.             errOSAScriptError:      sourceData was a bad script (syntax error)
  1057.             errOSAInvalidID:        previousAndResultingCompiledScriptID was not
  1058.                                     valid on input
  1059.             errOSAScriptError:      the executing script got an error
  1060.     
  1061.         ModeFlags:
  1062.             kOSAModeNeverInteract
  1063.             kOSAModeCanInteract
  1064.             kOSAModeAlwaysInteract
  1065.             kOSAModeCantSwitchLayer
  1066.             kOSAModeDontReconnect
  1067.             kOSAModeDoRecord
  1068.             kOSAModeDisplayForHumans
  1069.     */
  1070. /**************************************************************************
  1071.     OSA Optional Dialects Interface
  1072. **************************************************************************
  1073.     Scripting components that support the Dialects interface have the 
  1074.     kOSASupportsDialects bit set in their ComponentDescription.
  1075. **************************************************************************/
  1076. /*
  1077.     These calls allows an scripting component that supports different dialects
  1078.     to dynamically switch between those dialects.  Although this interface is
  1079.     specified, the particular dialect codes are scripting component dependent.
  1080. */
  1081. EXTERN_API( OSAError )
  1082. OSASetCurrentDialect            (ComponentInstance      scriptingComponent,
  1083.                                  short                  dialectCode)                        FIVEWORDINLINE(0x2F3C, 0x0002, 0x0701, 0x7000, 0xA82A);
  1084. /*
  1085.         OSAComponentFunctionInline(kOSASelectSetCurrentDialect, 2);
  1086.     
  1087.         Errors:
  1088.             badComponentInstance    invalid scripting component instance
  1089.             errOSASystemError
  1090.             errOSANoSuchDialect:    invalid dialectCode
  1091.     */
  1092. EXTERN_API( OSAError )
  1093. OSAGetCurrentDialect            (ComponentInstance      scriptingComponent,
  1094.                                  short *                resultingDialectCode)               FIVEWORDINLINE(0x2F3C, 0x0004, 0x0702, 0x7000, 0xA82A);
  1095. /*
  1096.         OSAComponentFunctionInline(kOSASelectGetCurrentDialect, 4);
  1097.     
  1098.         Errors:
  1099.             badComponentInstance    invalid scripting component instance
  1100.             errOSASystemError
  1101.     */
  1102. EXTERN_API( OSAError )
  1103. OSAAvailableDialects            (ComponentInstance      scriptingComponent,
  1104.                                  AEDesc *               resultingDialectInfoList)           FIVEWORDINLINE(0x2F3C, 0x0004, 0x0703, 0x7000, 0xA82A);
  1105. /*
  1106.         OSAComponentFunctionInline(kOSASelectAvailableDialects, 4);
  1107.         This call return an AEList containing information about each of the
  1108.         currently available dialects of a scripting component.  Each item
  1109.         is an AERecord of typeOSADialectInfo that contains at least the fields
  1110.         keyOSADialectName, keyOSADialectCode, KeyOSADialectLangCode and 
  1111.         keyOSADialectScriptCode.
  1112.     
  1113.         Errors:
  1114.             badComponentInstance    invalid scripting component instance
  1115.             errOSASystemError
  1116.     */
  1117. EXTERN_API( OSAError )
  1118. OSAGetDialectInfo               (ComponentInstance      scriptingComponent,
  1119.                                  short                  dialectCode,
  1120.                                  OSType                 selector,
  1121.                                  AEDesc *               resultingDialectInfo)               FIVEWORDINLINE(0x2F3C, 0x000A, 0x0704, 0x7000, 0xA82A);
  1122. /*
  1123.         OSAComponentFunctionInline(kOSASelectGetDialectInfo, 10);
  1124.         This call gives information about the specified dialect of a scripting
  1125.         component. It returns an AEDesc whose type depends on the selector 
  1126.         specified. Available selectors are the same as the field keys for a
  1127.         dialect info record. The type of AEDesc returned is the same as the 
  1128.         type of the field that has same key as the selector.
  1129.     
  1130.         Errors:
  1131.             badComponentInstance    invalid scripting component instance
  1132.             errOSASystemError
  1133.             errOSABadSelector
  1134.             errOSANoSuchDialect:    invalid dialectCode
  1135.     */
  1136. EXTERN_API( OSAError )
  1137. OSAAvailableDialectCodeList     (ComponentInstance      scriptingComponent,
  1138.                                  AEDesc *               resultingDialectCodeList)           FIVEWORDINLINE(0x2F3C, 0x0004, 0x0705, 0x7000, 0xA82A);
  1139. /*
  1140.         OSAComponentFunctionInline(kOSASelectAvailableDialectCodeList, 4);
  1141.         This is alternative to OSAGetAvailableDialectCodeList. Use this call
  1142.         and  OSAGetDialectInfo to get information on dialects.
  1143.         This call return an AEList containing dialect code for each of the
  1144.         currently available dialects of a scripting component. Each dialect
  1145.         code is a short integer of type typeShortInteger.
  1146.     
  1147.         Errors:
  1148.             badComponentInstance    invalid scripting component instance
  1149.             errOSASystemError
  1150.         Type of a dialect info record containing at least keyOSADialectName
  1151.         and keyOSADialectCode fields.
  1152.         keys for dialect info record, also used as selectors to OSAGetDialectInfo.
  1153.         Field of a typeOSADialectInfo record of typeChar.
  1154.         Field of a typeOSADialectInfo record of typeShortInteger.
  1155.         Field of a typeOSADialectInfo record of typeShortInteger.
  1156.         Field of a typeOSADialectInfo record of typeShortInteger.
  1157.     */
  1158. /**************************************************************************
  1159.     OSA Optional Event Handling Interface
  1160. **************************************************************************
  1161.     Scripting components that support the Event Handling interface have the 
  1162.     kOSASupportsEventHandling bit set in their ComponentDescription.
  1163. **************************************************************************/
  1164. EXTERN_API( OSAError )
  1165. OSASetResumeDispatchProc        (ComponentInstance      scriptingComponent,
  1166.                                  AEEventHandlerUPP      resumeDispatchProc,
  1167.                                  long                   refCon)                             FIVEWORDINLINE(0x2F3C, 0x0008, 0x0801, 0x7000, 0xA82A);
  1168. /*
  1169.         OSAComponentFunctionInline(kOSASelectSetResumeDispatchProc, 8);
  1170.         This function is used to set the ResumeDispatchProc that will be used
  1171.         by OSAExecuteEvent and OSADoEvent if either no event handler can be
  1172.         found in the context, or the context event hander "continues" control
  1173.         onward. The two constants kOSAUseStandardDispatch and kOSANoDispatch
  1174.         may also be passed to this routine indicating that the handler registered
  1175.         in the application with AEInstallEventHandler should be used, or no
  1176.         dispatch should occur, respectively.
  1177.     
  1178.         Errors:
  1179.             badComponentInstance    invalid scripting component instance
  1180.             errOSASystemError
  1181.     */
  1182. enum {
  1183.     kOSAUseStandardDispatch     = kAEUseStandardDispatch
  1184. };
  1185. /*
  1186.         Special ResumeDispatchProc constant which may be passed to 
  1187.         OSASetResumeDispatchProc indicating that the handler registered
  1188.         in the application with AEInstallEventHandler should be used.
  1189.         
  1190.         NOTE:   Had to remove the cast (AEEventHandlerUPP).  The C compiler
  1191.                 doesn't allow pointer types to be assigned to an enum.  All
  1192.                 constants must be assigned as enums to translate properly to
  1193.                 Pascal.
  1194.     */
  1195. enum {
  1196.     kOSANoDispatch              = kAENoDispatch
  1197. };
  1198. /*
  1199.         Special ResumeDispatchProc constant which may be passed to 
  1200.         OSASetResumeDispatchProc indicating that no dispatch should occur.
  1201.         
  1202.         NOTE:   Had to remove the cast (AEEventHandlerUPP).  The C compiler
  1203.                 doesn't allow pointer types to be assigned to an enum.  All
  1204.                 constants must be assigned as enums to translate properly to
  1205.                 Pascal.
  1206.     */
  1207. enum {
  1208.     kOSADontUsePhac             = 0x0001
  1209. };
  1210. /*
  1211.         Special refCon constant that may be given to OSASetResumeDispatchProc
  1212.         only when kOSAUseStandardDispatch is used as the ResumeDispatchProc.
  1213.         This causes the standard dispatch to be performed, except the phac
  1214.         handler is not called.  This is useful during tinkerability, when
  1215.         the phac handler is used to lookup a context associated with an event's 
  1216.         direct parameter, and call OSAExecuteEvent or OSADoEvent.  Failure to
  1217.         bypass the phac handler would result in an infinite loop.
  1218.     */
  1219. EXTERN_API( OSAError )
  1220. OSAGetResumeDispatchProc        (ComponentInstance      scriptingComponent,
  1221.                                  AEEventHandlerUPP *    resumeDispatchProc,
  1222.                                  long *                 refCon)                             FIVEWORDINLINE(0x2F3C, 0x0008, 0x0802, 0x7000, 0xA82A);
  1223. /*
  1224.         OSAComponentFunctionInline(kOSASelectGetResumeDispatchProc, 8);
  1225.         Returns the registered ResumeDispatchProc.  If no ResumeDispatchProc has
  1226.         been registered, then kOSAUseStandardDispatch (the default) is returned.
  1227.     
  1228.         Errors:
  1229.             badComponentInstance    invalid scripting component instance
  1230.             errOSASystemError
  1231.     */
  1232. EXTERN_API( OSAError )
  1233. OSAExecuteEvent                 (ComponentInstance      scriptingComponent,
  1234.                                  const AppleEvent *     theAppleEvent,
  1235.                                  OSAID                  contextID,
  1236.                                  long                   modeFlags,
  1237.                                  OSAID *                resultingScriptValueID)             FIVEWORDINLINE(0x2F3C, 0x0010, 0x0803, 0x7000, 0xA82A);
  1238. /*
  1239.         OSAComponentFunctionInline(kOSASelectExecuteEvent, 16);
  1240.         This call is similar to OSAExecute except the initial command to
  1241.         execute comes in the form of an AppleEvent.  If the contextID
  1242.         defines any event handlers for that event, they are used to process
  1243.         the event.  If no event handler can be found in the context
  1244.         errAEEventNotHandled is returned.  If an event handler is found and
  1245.         the hander "continues" control onward, the ResumeDispatchProc
  1246.         (registered with OSASetResumeDispatchProc, above) is called given the
  1247.         AppleEvent.  The result is returned as a scriptValueID.
  1248.     
  1249.         Errors:
  1250.             badComponentInstance    invalid scripting component instance
  1251.             errOSASystemError
  1252.             errOSAInvalidID
  1253.             errOSAScriptError:      the executing script got an error
  1254.             errAEEventNotHandled:   no handler for event in contextID
  1255.     
  1256.         ModeFlags:
  1257.             kOSAModeNeverInteract
  1258.             kOSAModeCanInteract
  1259.             kOSAModeAlwaysInteract
  1260.             kOSAModeCantSwitchLayer
  1261.             kOSAModeDontReconnect
  1262.             kOSAModeDoRecord
  1263.     */
  1264. EXTERN_API( OSAError )
  1265. OSADoEvent                      (ComponentInstance      scriptingComponent,
  1266.                                  const AppleEvent *     theAppleEvent,
  1267.                                  OSAID                  contextID,
  1268.                                  long                   modeFlags,
  1269.                                  AppleEvent *           reply)                              FIVEWORDINLINE(0x2F3C, 0x0010, 0x0804, 0x7000, 0xA82A);
  1270. /*
  1271.         OSAComponentFunctionInline(kOSASelectDoEvent, 16);
  1272.         This call is similar to OSADoScript except the initial command to
  1273.         execute comes in the form of an AppleEvent, and the result is an 
  1274.         AppleEvent reply record.  If the contextID defines any event handlers
  1275.         for that event, they are used to process the event.  If no event handler
  1276.         can be found in the context errAEEventNotHandled is returned.  If an
  1277.         event handler is found and the hander "continues" control onward, the
  1278.         ResumeDispatchProc (registered with OSASetResumeDispatchProc, above) is
  1279.         called given the AppleEvent.  The result is returned in the form of an
  1280.         AppleEvent reply descriptor. If at any time the script gets an error, or
  1281.         if the ResumeDispatchProc returns a reply event indicating an error,
  1282.         then the OSADoEvent call itself returns an error reply (i.e. OSADoEvent
  1283.         should never return errOSAScriptError).  Any error result returned by
  1284.         the ResumeDispatchProc will be returned by OSADoEvent.
  1285.     
  1286.         Errors:
  1287.             badComponentInstance    invalid scripting component instance
  1288.             errOSASystemError
  1289.             errOSAInvalidID
  1290.             errAEEventNotHandled:   no handler for event in contextID
  1291.     
  1292.         ModeFlags:
  1293.             kOSAModeNeverInteract
  1294.             kOSAModeCanInteract
  1295.             kOSAModeAlwaysInteract
  1296.             kOSAModeCantSwitchLayer
  1297.             kOSAModeDontReconnect
  1298.             kOSAModeDoRecord
  1299.     */
  1300. EXTERN_API( OSAError )
  1301. OSAMakeContext                  (ComponentInstance      scriptingComponent,
  1302.                                  const AEDesc *         contextName,
  1303.                                  OSAID                  parentContext,
  1304.                                  OSAID *                resultingContextID)                 FIVEWORDINLINE(0x2F3C, 0x000C, 0x0805, 0x7000, 0xA82A);
  1305. /*
  1306.         OSAComponentFunctionInline(kOSASelectMakeContext, 12);
  1307.         Makes a new empty context which may be passed to OSAExecute or 
  1308.         OSAExecuteEvent.  If contextName is typeNull, an unnamed context is
  1309.         created. If parentContext is kOSANullScript then the resulting context
  1310.         does not inherit bindings from any other context.
  1311.     
  1312.         Errors:
  1313.             badComponentInstance    invalid scripting component instance
  1314.             errOSASystemError
  1315.             errOSAInvalidID
  1316.             errAECoercionFail:      contextName is invalid
  1317.     */
  1318. #if PRAGMA_STRUCT_ALIGN
  1319.     #pragma options align=reset
  1320. #elif PRAGMA_STRUCT_PACKPUSH
  1321.     #pragma pack(pop)
  1322. #elif PRAGMA_STRUCT_PACK
  1323.     #pragma pack()
  1324. #endif
  1325. #ifdef PRAGMA_IMPORT_OFF
  1326. #pragma import off
  1327. #elif PRAGMA_IMPORT
  1328. #pragma import reset
  1329. #endif
  1330. #ifdef __cplusplus
  1331. }
  1332. #endif
  1333. #endif /* __OSA__ */