Defined Types



TQ3ViewEndFrameMethod


typedef Q3_CALLBACK_API_C (void, TQ3ViewEndFrameMethod) (
    TQ3ViewObject theView,
    void *endFrameData
);

Discussion

Application callback for Q3View_SetEndFrameMethod.

Parameter Descriptions
theView
The view being submitted to.
endFrameData
The application-specific data passed to Q3View_SetEndFrameMethod.
function result
Success or failure of the callback.

TQ3ViewIdleMethod


typedef Q3_CALLBACK_API_C (TQ3Status, TQ3ViewIdleMethod) (
    TQ3ViewObject theView,
    const void *idlerData
);

Discussion

Application callback for Q3View_SetIdleMethod.

Parameter Descriptions
theView
The view being submitted to.
idlerData
The application-specific data passed to Q3View_SetIdleMethod.
function result
Success or failure of the callback.

TQ3ViewIdleProgressMethod


typedef Q3_CALLBACK_API_C (TQ3Status, TQ3ViewIdleProgressMethod) (
    TQ3ViewObject theView,
    const void *idlerData,
    TQ3Uns32 progressCurrent,
    TQ3Uns32 progressCompleted
);

Discussion

Application callback for Q3View_SetIdleProgressMethod.

Parameter Descriptions
theView
The view being submitted to.
idlerData
The application-specific data passed to Q3View_SetIdleProgressMethod.
progressCurrent
The number of work units completed.
progressCompleted
The total number of work units which will be completed.
function result
Success or failure of the callback.

© 1999-2008 Quesa Developers (Last Updated 5/10/2008)