C4 Engine
C4 Engine API Documentation

Completable::GetCompletionCallback

Defined in:  TSCompletable.h
Returns the completion callback function for an object.
Prototype

CompletionCallback *GetCompletionCallback(voidconst;

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

typedef void CompletionCallback(classType *, void *);

where classType is the template parameter for the Completable class template.
See Also

Completable::SetCompletionCallback

Completable::GetCompletionCookie

Completable::SetCompletionCookie

Completable::HandleCompletion