AEBuildParameters
Adds additional parameters or attributes to an existing Apple event.
Declaration
OSStatus AEBuildParameters(AppleEvent *event, AEBuildError *error, const char *format, ...);Parameters
- event:
The Apple event to which you are adding parameters. See Appleevent.
- error:
A pointer to an
AEBuildErrorstructure where additional information about any errors that occur will be saved. This is an optional parameter and you can passNULLif this information is not required. See Aebuilderror. - format:
An
AEBuildformat string describing the parameters to be created.
Return Value
A result code. See Result Codes.
Discussion
This function can be called more than once to add any desired number of parameters or attributes to an existing Apple event. The Apple event should already have been created through either a call to AECreateAppleEvent or AEBuildAppleEvent.
This function and related “AEBuild” routines provide a very simple translation service for converting specially formatted strings into complex Apple event descriptors. Normally, creating complex Apple event descriptors requires a large number of calls to Apple event Manager routines to build up the descriptor piece by piece. The AEBuildDesc function and related routines allow you to consolidate all of the calls required to construct a complex Apple event descriptor into a single system call that creates the desired structure as directed by a format string that you provide.
For additional information on using the AEBuild routines, see the descriptions for AEBuildAppleEvent and AEBuildDesc.