Carbon


Resume Event Dispatch Constants

Header: AEInteraction.h

Specify event dispatching information to the AEResumeTheCurrentEvent function.

enum {
    kAENoDispatch = 0,
    kAEUseStandardDispatch = -1
};

Constant descriptions

kAENoDispatch

Tells the Apple Event Manager that the Apple event has been completely processed and need not be dispatched.

kAEUseStandardDispatch

Tells the Apple Event Manager to dispatch the resumed event using the standard dispatching scheme it uses for other Apple events.

You call the AEResumeTheCurrentEvent function to inform the Apple Event Manager that your application wants to resume the handling of a previously suspended Apple event or that it has completed the handling of the Apple event. You pass one of the constants described here in the dispatcher parameter to provide dispatching information to the Apple Event Manager. You can also pass a handler universal procedure pointer.


© 2000 Apple Computer, Inc. (Last Updated 6/30/2000)