Share

acedPendingCmdCTokens Function

C++

ACAD_PORT bool acedPendingCmdCTokens();

File

acedCmdNF.h

Description

This predicate should be checked immediately after calling acedInvoke from a function registered via acedDefun that has itself been invoked from LISP. If it returns true, then the calling function should itself also immediately return RSRSLT, without necessarily establishing a return value. The tokens will be processed, and either the calling function will be called back (see acedResumeInvocation below for determining if this is the case), or cancel will terminate the rest of the operation.

Note that acedFiberWorld() must return true for acedCmdC to succeed in an acedInvoke context, and for this function to return true.

Returns

True, after a function has invoked acedCmdC from a LISP context, and LISP has yet to return. See preceding for how to proceed when true is returned. False, when there are no pending comand tokens, in which case the caller should proceed normally.

Was this information helpful?