Defined Types



TQ3ErrorMethod


typedef Q3_CALLBACK_API_C (void, TQ3ErrorMethod) (
    TQ3Error firstError,
    TQ3Error lastError,
    TQ3Int32 userData
);

Discussion

Error Manager error callback.

Parameter Descriptions
firstError
The first error which has occurred since the last time the handler was invoked.
lastError
The most recent error which has occurred.
userData
The reference parameter passed to Q3Error_Register.

TQ3NoticeMethod


typedef Q3_CALLBACK_API_C (void, TQ3NoticeMethod) (
    TQ3Notice firstNotice,
    TQ3Notice lastNotice,
    TQ3Int32 userData
);

Discussion

Error Manager notice callback.

Parameter Descriptions
firstNotice
The first notice which has occurred since the last time the handler was invoked.
lastNotice
The most recent notice which has occurred.
userData
The reference parameter passed to Q3Notice_Register.

TQ3WarningMethod


typedef Q3_CALLBACK_API_C (void, TQ3WarningMethod) (
    TQ3Warning firstWarning,
    TQ3Warning lastWarning,
    TQ3Int32 userData
);

Discussion

Error Manager warning callback.

Parameter Descriptions
firstWarning
The first warning which has occurred since the last time the handler was invoked.
lastWarning
The most recent warning which has occurred.
userData
The reference parameter passed to Q3Warning_Register.

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