HTManager.h
Types
Type Aliases
bool(* |
Fields
Detailed Description
Defines datatypes for the HTManager class
Type Documentation
-
enum HTCStyle
Indicates how timer events will be delivered
Values:
-
enumerator HTCS_Invalid
An invalid default state for the client style. The client style must be set before anything useful will happen.
-
enumerator HTCS_Once
A single event will be delivered at the designated time, after which the timer client will automatically be unregistered.
-
enumerator HTCS_Periodic
Events will be delivered at the interval specified with the timer client’s “mt_interval” member variable. If for any reason the timer manager falls behind, a series of “make-up” events will be delivered, with identical values for “actual_time”, but different “request_time“‘s
-
enumerator HTCS_PeriodicSkip
Similar to HTCS_Periodic but this option has no make-up events.
-
enumerator HTCS_Invalid
Type Alias Documentation
-
typedef bool (*HTClientTickFunction)(float request_time, float actual_time, void *user_data)
var typedef bool(*HTClientTickFunction)(float request_time, float actual_time, void * user_data)