Contents

AEPutParamDesc(_:_:_:)

Inserts a descriptor and a keyword into an Apple event or Apple event record as an Apple event parameter.

Declaration

func AEPutParamDesc(_ theAppleEvent: UnsafeMutablePointer<AppleEvent>!, _ theAEKeyword: AEKeyword, _ theAEDesc: UnsafePointer<AEDesc>!) -> OSErr

Parameters

  • theAppleEvent:

    A pointer to the Apple event to add a parameter to. See the Appleevent data type.

  • theAEKeyword:

    The keyword specifying the parameter to add. If the Apple event already has a parameter with this keyword, the parameter is replaced.

    Some keyword constants are described in 1527206 Keyword_parameter_constants.

    See Aekeyword.

  • theAEDesc:

    A pointer to the descriptor for the parameter to add. See Aedesc.

Return Value

A result code. See Result Codes.

Discussion

Thread safe starting in OS X v10.2.

See Also

Adding Parameters and Attributes to Apple Events and Apple Event Records