Previous Topic: PFN_CARNICB GetCallBack(void);

Next Topic: HINT32 Execute(void)


void* GetCBUserData(void);

Retrieves the user data that will be passed to the callback function on each callback execution.

Note: The callback function takes as an argument a void*, and during execution the data set by this method is passed to the callback function through this argument. The callback function must know how to interpret this data itself.

Owning Class

CaMoveItem

Arguments

None

Return Value

void*-user defined data type that is expected by callback function

Example

CaMoveItem& rMoveItem = rContext.GetMoveItem();
void*rMoveItem.GetCBUserData( (void*) &usrData );

More information: