C4 Engine Terathon Software C4 Engine API Documentation

• Utility Library

API Links
Developer Links

Completable::GetCompletionProc

Defined in:  C4Completable.h
Returns the completion procedure for an object.
Prototype

CompletionProc *GetCompletionProc(voidconst;

Description
The GetCompletionProc function returns a pointer to the currently installed completion procedure. If no completion procedure has been installed, then this function returns nullptr. The CompletionProc type is defined as

typedef void CompletionProc(classType *, dataType);

where classType and dataType are the template parameters for the Completable class template.
See Also
Completable::SetCompletionProc

Completable::GetCompletionData

Completable::SetCompletionData

Completable::CallCompletionProc