Function Prototypes:ttUserTimerCBFunc

Jump to: navigation, search

Table of Contents >> Programmer's Reference >> tfRegisterTimerCB


void ttUserTimerCBFunc (
ttUser32Bit timerInterval,
ttUserGenericUnion userParam
);


Function Description

This callback indicates the amount of time that may pass before the user must call tfTimerExecute().

Usage

Call tfRegisterTimerCB() to register the callback function. When the callback is invoked, wait timerInterval milliseconds then call tfTimerExecute(). userParam will contain the information submitted during registration.


Parameters

  • timerInterval
    The number of milliseconds that may elapse before the user must call tfTimerExecute()
  • userParam
    This is the user-defined data that is passed during registration and returned each time the callback is invoked.


Table of Contents >> Programmer's Reference >> tfRegisterTimerCB