AppleEvents.pas 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553
  1. {
  2. File: AppleEvents.p
  3. Contains: AppleEvent Package Interfaces.
  4. Version: Technology: System 7.5
  5. Release: Universal Interfaces 3.4.2
  6. Copyright: © 1989-2002 by Apple Computer, Inc., all rights reserved
  7. Bugs?: For bug reports, consult the following page on
  8. the World Wide Web:
  9. http://www.freepascal.org/bugs.html
  10. }
  11. {
  12. Modified for use with Free Pascal
  13. Version 200
  14. Please report any bugs to <[email protected]>
  15. }
  16. {$mode macpas}
  17. {$packenum 1}
  18. {$macro on}
  19. {$inline on}
  20. {$CALLING MWPASCAL}
  21. unit AppleEvents;
  22. interface
  23. {$setc UNIVERSAL_INTERFACES_VERSION := $0342}
  24. {$setc GAP_INTERFACES_VERSION := $0200}
  25. {$ifc not defined USE_CFSTR_CONSTANT_MACROS}
  26. {$setc USE_CFSTR_CONSTANT_MACROS := TRUE}
  27. {$endc}
  28. {$ifc defined CPUPOWERPC and defined CPUI386}
  29. {$error Conflicting initial definitions for CPUPOWERPC and CPUI386}
  30. {$endc}
  31. {$ifc defined FPC_BIG_ENDIAN and defined FPC_LITTLE_ENDIAN}
  32. {$error Conflicting initial definitions for FPC_BIG_ENDIAN and FPC_LITTLE_ENDIAN}
  33. {$endc}
  34. {$ifc not defined __ppc__ and defined CPUPOWERPC}
  35. {$setc __ppc__ := 1}
  36. {$elsec}
  37. {$setc __ppc__ := 0}
  38. {$endc}
  39. {$ifc not defined __i386__ and defined CPUI386}
  40. {$setc __i386__ := 1}
  41. {$elsec}
  42. {$setc __i386__ := 0}
  43. {$endc}
  44. {$ifc defined __ppc__ and __ppc__ and defined __i386__ and __i386__}
  45. {$error Conflicting definitions for __ppc__ and __i386__}
  46. {$endc}
  47. {$ifc defined __ppc__ and __ppc__}
  48. {$setc TARGET_CPU_PPC := TRUE}
  49. {$setc TARGET_CPU_X86 := FALSE}
  50. {$elifc defined __i386__ and __i386__}
  51. {$setc TARGET_CPU_PPC := FALSE}
  52. {$setc TARGET_CPU_X86 := TRUE}
  53. {$elsec}
  54. {$error Neither __ppc__ nor __i386__ is defined.}
  55. {$endc}
  56. {$setc TARGET_CPU_PPC_64 := FALSE}
  57. {$ifc defined FPC_BIG_ENDIAN}
  58. {$setc TARGET_RT_BIG_ENDIAN := TRUE}
  59. {$setc TARGET_RT_LITTLE_ENDIAN := FALSE}
  60. {$elifc defined FPC_LITTLE_ENDIAN}
  61. {$setc TARGET_RT_BIG_ENDIAN := FALSE}
  62. {$setc TARGET_RT_LITTLE_ENDIAN := TRUE}
  63. {$elsec}
  64. {$error Neither FPC_BIG_ENDIAN nor FPC_LITTLE_ENDIAN are defined.}
  65. {$endc}
  66. {$setc ACCESSOR_CALLS_ARE_FUNCTIONS := TRUE}
  67. {$setc CALL_NOT_IN_CARBON := FALSE}
  68. {$setc OLDROUTINENAMES := FALSE}
  69. {$setc OPAQUE_TOOLBOX_STRUCTS := TRUE}
  70. {$setc OPAQUE_UPP_TYPES := TRUE}
  71. {$setc OTCARBONAPPLICATION := TRUE}
  72. {$setc OTKERNEL := FALSE}
  73. {$setc PM_USE_SESSION_APIS := TRUE}
  74. {$setc TARGET_API_MAC_CARBON := TRUE}
  75. {$setc TARGET_API_MAC_OS8 := FALSE}
  76. {$setc TARGET_API_MAC_OSX := TRUE}
  77. {$setc TARGET_CARBON := TRUE}
  78. {$setc TARGET_CPU_68K := FALSE}
  79. {$setc TARGET_CPU_MIPS := FALSE}
  80. {$setc TARGET_CPU_SPARC := FALSE}
  81. {$setc TARGET_OS_MAC := TRUE}
  82. {$setc TARGET_OS_UNIX := FALSE}
  83. {$setc TARGET_OS_WIN32 := FALSE}
  84. {$setc TARGET_RT_MAC_68881 := FALSE}
  85. {$setc TARGET_RT_MAC_CFM := FALSE}
  86. {$setc TARGET_RT_MAC_MACHO := TRUE}
  87. {$setc TYPED_FUNCTION_POINTERS := TRUE}
  88. {$setc TYPE_BOOL := FALSE}
  89. {$setc TYPE_EXTENDED := FALSE}
  90. {$setc TYPE_LONGLONG := TRUE}
  91. uses MacTypes,MixedMode,AEDataModel,AEInteraction, CFArray, CFBase, CFRunLoop, CFStream, CFURL;
  92. {
  93. Note: The functions and types for the building and parsing AppleEvent
  94. messages has moved to AEDataModel.h
  95. }
  96. {
  97. Note: The functions for interacting with events has moved to AEInteraction.h
  98. }
  99. {$ALIGN MAC68K}
  100. const
  101. { Keywords for Apple event parameters }
  102. keyDirectObject = $2D2D2D2D (* '----' *);
  103. keyErrorNumber = $6572726E (* 'errn' *);
  104. keyErrorString = $65727273 (* 'errs' *);
  105. keyProcessSerialNumber = $70736E20 (* 'psn ' *); { Keywords for special handlers }
  106. keyPreDispatch = $70686163 (* 'phac' *); { preHandler accessor call }
  107. keySelectProc = $73656C68 (* 'selh' *); { more selector call }
  108. { Keyword for recording }
  109. keyAERecorderCount = $72656372 (* 'recr' *); { available only in vers 1.0.1 and greater }
  110. { Keyword for version information }
  111. keyAEVersion = $76657273 (* 'vers' *); { available only in vers 1.0.1 and greater }
  112. { Event Class }
  113. kCoreEventClass = $61657674 (* 'aevt' *);
  114. { Event IDÕs }
  115. kAEOpenApplication = $6F617070 (* 'oapp' *);
  116. kAEOpenDocuments = $6F646F63 (* 'odoc' *);
  117. kAEPrintDocuments = $70646F63 (* 'pdoc' *);
  118. kAEQuitApplication = $71756974 (* 'quit' *);
  119. kAEAnswer = $616E7372 (* 'ansr' *);
  120. kAEApplicationDied = $6F626974 (* 'obit' *);
  121. kAEShowPreferences = $70726566 (* 'pref' *); { sent by Mac OS X when the user chooses the Preferences item }
  122. kAEAutosaveNow = $61736176 (* 'asav' *); { sent by Mac OS X when it is advisable to autosave all the user's documents with uncommitted changes. }
  123. { Constants for recording }
  124. kAEStartRecording = $72656361 (* 'reca' *); { available only in vers 1.0.1 and greater }
  125. kAEStopRecording = $72656363 (* 'recc' *); { available only in vers 1.0.1 and greater }
  126. kAENotifyStartRecording = $72656331 (* 'rec1' *); { available only in vers 1.0.1 and greater }
  127. kAENotifyStopRecording = $72656330 (* 'rec0' *); { available only in vers 1.0.1 and greater }
  128. kAENotifyRecording = $72656372 (* 'recr' *); { available only in vers 1.0.1 and greater }
  129. {
  130. * AEEventSource is defined as an SInt8 for compatability with pascal.
  131. * Important note: keyEventSourceAttr is returned by AttributePtr as a typeShortInteger.
  132. * Be sure to pass at least two bytes of storage to AEGetAttributePtr - the result can be
  133. * compared directly against the following enums.
  134. }
  135. type
  136. AEEventSource = SInt8;
  137. const
  138. kAEUnknownSource = 0;
  139. kAEDirectCall = 1;
  140. kAESameProcess = 2;
  141. kAELocalProcess = 3;
  142. kAERemoteProcess = 4;
  143. { *************************************************************************
  144. These calls are used to set up and modify the event dispatch table.
  145. ************************************************************************* }
  146. {
  147. * AEInstallEventHandler()
  148. *
  149. * Mac OS X threading:
  150. * Thread safe since version 10.2
  151. *
  152. * Availability:
  153. * Non-Carbon CFM: in InterfaceLib 7.1 and later
  154. * CarbonLib: in CarbonLib 1.0 and later
  155. * Mac OS X: in version 10.0 and later
  156. }
  157. function AEInstallEventHandler(theAEEventClass: AEEventClass; theAEEventID: AEEventID; handler: AEEventHandlerUPP; handlerRefcon: SInt32; isSysHandler: boolean): OSErr; external name '_AEInstallEventHandler';
  158. {
  159. * AERemoveEventHandler()
  160. *
  161. * Mac OS X threading:
  162. * Thread safe since version 10.2
  163. *
  164. * Availability:
  165. * Non-Carbon CFM: in InterfaceLib 7.1 and later
  166. * CarbonLib: in CarbonLib 1.0 and later
  167. * Mac OS X: in version 10.0 and later
  168. }
  169. function AERemoveEventHandler(theAEEventClass: AEEventClass; theAEEventID: AEEventID; handler: AEEventHandlerUPP; isSysHandler: boolean): OSErr; external name '_AERemoveEventHandler';
  170. {
  171. * AEGetEventHandler()
  172. *
  173. * Mac OS X threading:
  174. * Thread safe since version 10.2
  175. *
  176. * Availability:
  177. * Non-Carbon CFM: in InterfaceLib 7.1 and later
  178. * CarbonLib: in CarbonLib 1.0 and later
  179. * Mac OS X: in version 10.0 and later
  180. }
  181. function AEGetEventHandler(theAEEventClass: AEEventClass; theAEEventID: AEEventID; var handler: AEEventHandlerUPP; var handlerRefcon: SInt32; isSysHandler: boolean): OSErr; external name '_AEGetEventHandler';
  182. {*************************************************************************
  183. These calls are used to set up and modify special hooks into the
  184. AppleEvent manager.
  185. *************************************************************************}
  186. {
  187. * AEInstallSpecialHandler()
  188. *
  189. * Mac OS X threading:
  190. * Thread safe since version 10.2
  191. *
  192. * Availability:
  193. * Non-Carbon CFM: in InterfaceLib 7.1 and later
  194. * CarbonLib: in CarbonLib 1.0 and later
  195. * Mac OS X: in version 10.0 and later
  196. }
  197. function AEInstallSpecialHandler(functionClass: AEKeyword; handler: AEEventHandlerUPP; isSysHandler: boolean): OSErr; external name '_AEInstallSpecialHandler';
  198. {
  199. * AERemoveSpecialHandler()
  200. *
  201. * Mac OS X threading:
  202. * Thread safe since version 10.2
  203. *
  204. * Availability:
  205. * Non-Carbon CFM: in InterfaceLib 7.1 and later
  206. * CarbonLib: in CarbonLib 1.0 and later
  207. * Mac OS X: in version 10.0 and later
  208. }
  209. function AERemoveSpecialHandler(functionClass: AEKeyword; handler: AEEventHandlerUPP; isSysHandler: boolean): OSErr; external name '_AERemoveSpecialHandler';
  210. {
  211. * AEGetSpecialHandler()
  212. *
  213. * Mac OS X threading:
  214. * Thread safe since version 10.2
  215. *
  216. * Availability:
  217. * Non-Carbon CFM: in InterfaceLib 7.1 and later
  218. * CarbonLib: in CarbonLib 1.0 and later
  219. * Mac OS X: in version 10.0 and later
  220. }
  221. function AEGetSpecialHandler(functionClass: AEKeyword; var handler: AEEventHandlerUPP; isSysHandler: boolean): OSErr; external name '_AEGetSpecialHandler';
  222. {*************************************************************************
  223. This call was added in version 1.0.1. If called with the keyword
  224. keyAERecorderCount ('recr'), the number of recorders that are
  225. currently active is returned in 'result'
  226. (available only in vers 1.0.1 and greater).
  227. *************************************************************************}
  228. {
  229. * AEManagerInfo()
  230. *
  231. * Mac OS X threading:
  232. * Thread safe since version 10.2
  233. *
  234. * Availability:
  235. * Non-Carbon CFM: in InterfaceLib 7.1 and later
  236. * CarbonLib: in CarbonLib 1.0 and later
  237. * Mac OS X: in version 10.0 and later
  238. }
  239. function AEManagerInfo(keyWord: AEKeyword; var result: SInt32): OSErr; external name '_AEManagerInfo';
  240. {
  241. AERemoteProcessResolver:
  242. These calls subsume the functionality of using the PPCToolbox on Mac
  243. OS 9 to locate processes on remote computers. (PPCToolbox is not
  244. part of Carbon.) These calls are supported on Mac OS X 10.3 or
  245. later.
  246. The model is to create a resolver for a particular URL and schedule
  247. it on a CFRunLoop to retrieve the results asynchronously. If
  248. synchronous behavior is desired, just call
  249. AERemoteProcessResolverGetProcesses to get the array; the call will
  250. block until the request is completed.
  251. A resolver can only be used once; once it has fetched the data or
  252. gotten an error it can no longer be scheduled.
  253. The data obtained from the resolver is a CFArrayRef of
  254. CFDictionaryRef objects. Each dictionary contains the URL of the
  255. remote application and its human readable name.
  256. }
  257. {
  258. * kAERemoteProcessURLKey
  259. *
  260. * Discussion:
  261. * the full URL to this application, a CFURLRef.
  262. *
  263. * Availability:
  264. * Mac OS X: in version 10.3 and later in ApplicationServices.framework
  265. * CarbonLib: not available
  266. * Non-Carbon CFM: not available
  267. }
  268. var kAERemoteProcessURLKey: CFStringRef; external name '_kAERemoteProcessURLKey'; (* attribute const *)
  269. (* AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER *)
  270. {
  271. * kAERemoteProcessNameKey
  272. *
  273. * Discussion:
  274. * the visible name to this application, in the localization
  275. * supplied by the server, a CFStringRef.
  276. *
  277. * Availability:
  278. * Mac OS X: in version 10.3 and later in ApplicationServices.framework
  279. * CarbonLib: not available
  280. * Non-Carbon CFM: not available
  281. }
  282. var kAERemoteProcessNameKey: CFStringRef; external name '_kAERemoteProcessNameKey'; (* attribute const *)
  283. (* AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER *)
  284. {
  285. * kAERemoteProcessUserIDKey
  286. *
  287. * Discussion:
  288. * the userid of this application, if available. If present, a
  289. * CFNumberRef.
  290. *
  291. * Availability:
  292. * Mac OS X: in version 10.3 and later in ApplicationServices.framework
  293. * CarbonLib: not available
  294. * Non-Carbon CFM: not available
  295. }
  296. var kAERemoteProcessUserIDKey: CFStringRef; external name '_kAERemoteProcessUserIDKey'; (* attribute const *)
  297. (* AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER *)
  298. {
  299. * kAERemoteProcessProcessIDKey
  300. *
  301. * Discussion:
  302. * the process id of this application, if available. If present, a
  303. * CFNumberRef.
  304. *
  305. * Availability:
  306. * Mac OS X: in version 10.3 and later in ApplicationServices.framework
  307. * CarbonLib: not available
  308. * Non-Carbon CFM: not available
  309. }
  310. var kAERemoteProcessProcessIDKey: CFStringRef; external name '_kAERemoteProcessProcessIDKey'; (* attribute const *)
  311. (* AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER *)
  312. {
  313. * AERemoteProcessResolverContext
  314. *
  315. * Discussion:
  316. * An optional context parameter for asynchronous resolution. The
  317. * context is copied and the info pointer retained. When the
  318. * callback is made, the info pointer is passed to the callback.
  319. }
  320. type
  321. AERemoteProcessResolverContext = record
  322. {
  323. * set to zero (0)
  324. }
  325. version: CFIndex;
  326. {
  327. * info pointer to be passed to the callback
  328. }
  329. info: UnivPtr;
  330. {
  331. * callback made on the info pointer. This field may be NULL.
  332. }
  333. retain: CFAllocatorRetainCallBack;
  334. {
  335. * callback made on the info pointer. This field may be NULL.
  336. }
  337. release: CFAllocatorReleaseCallBack;
  338. {
  339. * callback made on the info pointer. This field may be NULL.
  340. }
  341. copyDescription: CFAllocatorCopyDescriptionCallBack;
  342. end;
  343. AERemoteProcessResolverContextPtr = ^AERemoteProcessResolverContext; { when a var xx: AERemoteProcessResolverContext parameter can be nil, it is changed to xx: AERemoteProcessResolverContextPtr }
  344. {
  345. * AERemoteProcessResolverRef
  346. *
  347. * Discussion:
  348. * An opaque reference to an object that encapsulates the mechnanism
  349. * by which a list of processes running on a remote machine are
  350. * obtained. Created by AECreateRemoteProcessResolver, and must be
  351. * disposed of by AEDisposeRemoteProcessResolver. A
  352. * AERemoteProcessResolverRef is not a CFType.
  353. }
  354. type
  355. AERemoteProcessResolverRef = ^SInt32; { an opaque 32-bit type }
  356. {
  357. * AECreateRemoteProcessResolver()
  358. *
  359. * Discussion:
  360. * Create a Remote Process List Resolver object. The allocator is
  361. * used for any CoreFoundation types created or returned by this
  362. * API. The resulting object can be scheduled on a run loop, or
  363. * queried synchronously. Once the object has retreived results
  364. * from the server, or got an error doing so, it will not re-fetch
  365. * the data. To retrieve a new list of processes, create a new
  366. * instance of this object.
  367. *
  368. * Mac OS X threading:
  369. * Thread safe since version 10.3
  370. *
  371. * Parameters:
  372. *
  373. * allocator:
  374. * a CFAllocatorRef to use when creating CFTypes
  375. *
  376. * url:
  377. * a CFURL identifying the remote host and port.
  378. *
  379. * Result:
  380. * a AECreateRemoteProcessResolverRef, which must be disposed of
  381. * with AEDisposeRemoteProcessResolver.
  382. *
  383. * Availability:
  384. * Mac OS X: in version 10.3 and later in ApplicationServices.framework
  385. * CarbonLib: not available
  386. * Non-Carbon CFM: not available
  387. }
  388. function AECreateRemoteProcessResolver( allocator: CFAllocatorRef; url: CFURLRef ): AERemoteProcessResolverRef; external name '_AECreateRemoteProcessResolver';
  389. (* AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER *)
  390. {
  391. * AEDisposeRemoteProcessResolver()
  392. *
  393. * Discussion:
  394. * Disposes of a AERemoteProcessResolverRef. If this resolver is
  395. * currently scheduled on a run loop, it is unscheduled. In this
  396. * case, the asynchronous callback will not be executed.
  397. *
  398. * Mac OS X threading:
  399. * Thread safe since version 10.3
  400. *
  401. * Parameters:
  402. *
  403. * ref:
  404. * The AERemoteProcessResolverRef to dispose
  405. *
  406. * Availability:
  407. * Mac OS X: in version 10.3 and later in ApplicationServices.framework
  408. * CarbonLib: not available
  409. * Non-Carbon CFM: not available
  410. }
  411. procedure AEDisposeRemoteProcessResolver( ref: AERemoteProcessResolverRef ); external name '_AEDisposeRemoteProcessResolver';
  412. (* AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER *)
  413. {
  414. * AERemoteProcessResolverGetProcesses()
  415. *
  416. * Discussion:
  417. * Returns a CFArrayRef containing CFDictionary objects containing
  418. * information about processses running on a remote machine. If the
  419. * result array is NULL, the query failed and the error out
  420. * parameter will contain information about the failure. If the
  421. * resolver had not been previously scheduled for execution, this
  422. * call will block until the resulting array is available or an
  423. * error occurs. If the resolver had been scheduled but had not yet
  424. * completed fetching the array, this call will block until the
  425. * resolver does complete. The array returned is owned by the
  426. * resolver, so callers must retain it before disposing of the
  427. * resolver object itself.
  428. *
  429. * Mac OS X threading:
  430. * Thread safe since version 10.3
  431. *
  432. * Parameters:
  433. *
  434. * ref:
  435. * The AERemoteProcessResolverRef to query
  436. *
  437. * outError:
  438. * If the result is NULL, outError will contain a CFStreamError
  439. * with information about the type of failure
  440. *
  441. * Result:
  442. * a CFArray of CFDictionary objects containing information about
  443. * the remote applications.
  444. *
  445. * Availability:
  446. * Mac OS X: in version 10.3 and later in ApplicationServices.framework
  447. * CarbonLib: not available
  448. * Non-Carbon CFM: not available
  449. }
  450. function AERemoteProcessResolverGetProcesses( ref: AERemoteProcessResolverRef; var outError: CFStreamError ): CFArrayRef; external name '_AERemoteProcessResolverGetProcesses';
  451. (* AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER *)
  452. {
  453. * AERemoteProcessResolverCallback
  454. *
  455. * Discussion:
  456. * A callback made when the asynchronous execution of a resolver
  457. * completes, either due to success or failure. The data itself
  458. * should be obtained with AERemoteProcessResolverGetProcesses.
  459. }
  460. type
  461. AERemoteProcessResolverCallback = procedure( ref: AERemoteProcessResolverRef; info: UnivPtr );
  462. {
  463. * AERemoteProcessResolverScheduleWithRunLoop()
  464. *
  465. * Discussion:
  466. * Schedules a resolver for execution on a given runloop in a given
  467. * mode. The resolver will move through various internal states as
  468. * long as the specified run loop is run. When the resolver
  469. * completes, either with success or an error condition, the
  470. * callback is executed. There is no explicit unschedule of the
  471. * resolver; you must dispose of it to remove it from the run loop.
  472. *
  473. * Mac OS X threading:
  474. * Thread safe since version 10.3
  475. *
  476. * Parameters:
  477. *
  478. * ref:
  479. * The AERemoteProcessResolverRef to scheduile
  480. *
  481. * runLoop:
  482. * a CFRunLoop
  483. *
  484. * runLoopMode:
  485. * a CFString specifying the run loop mode
  486. *
  487. * callback:
  488. * a callback to be executed when the reolver completes
  489. *
  490. * ctx:
  491. * a AERemoteProcessResolverContext. If this parameter is not
  492. * NULL, the info field of this structure will be passed to the
  493. * callback (otherwise, the callback info parameter will
  494. * explicitly be NULL.)
  495. *
  496. * Availability:
  497. * Mac OS X: in version 10.3 and later in ApplicationServices.framework
  498. * CarbonLib: not available
  499. * Non-Carbon CFM: not available
  500. }
  501. procedure AERemoteProcessResolverScheduleWithRunLoop( ref: AERemoteProcessResolverRef; runLoop: CFRunLoopRef; runLoopMode: CFStringRef; callback: AERemoteProcessResolverCallback; {const} ctx: AERemoteProcessResolverContextPtr { can be NULL } ); external name '_AERemoteProcessResolverScheduleWithRunLoop';
  502. (* AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER *)
  503. {$ALIGN MAC68K}
  504. end.