wut
v1.7.0
Wii U Toolchain
|
Data Structures | |
struct | OSStopWatchAtomic |
Typedefs | |
typedef struct OSStopWatchAtomic | OSStopWatchAtomic |
Functions | |
OSTime | OSStopWatchStart (OSStopWatchAtomic *stopWatch) |
Start the stopwatch. More... | |
OSTime | OSStopWatchStop (OSStopWatchAtomic *stopWatch) |
Stop the stopwatch. More... | |
OSTime | OSStopWatchLap (OSStopWatchAtomic *stopWatch) |
Get the current time on the stopwatch. More... | |
OSTime | OSStopWatchReset (OSStopWatchAtomic *stopWatch) |
Stops and resets the stop watch. More... | |
struct OSStopWatchAtomic |
Definition at line 18 of file stopwatchatomic.h.
Data Fields | ||
---|---|---|
OSTime | startTime | Last time the watch was started. |
OSTime | totalTime | Total time from first start to last stop. |
typedef struct OSStopWatchAtomic OSStopWatchAtomic |
Definition at line 1 of file stopwatchatomic.h.
OSTime OSStopWatchStart | ( | OSStopWatchAtomic * | stopWatch | ) |
Start the stopwatch.
Only updates the start time
OSTime OSStopWatchStop | ( | OSStopWatchAtomic * | stopWatch | ) |
Stop the stopwatch.
Resets the start time to 0
OSTime OSStopWatchLap | ( | OSStopWatchAtomic * | stopWatch | ) |
Get the current time on the stopwatch.
OSTime OSStopWatchReset | ( | OSStopWatchAtomic * | stopWatch | ) |
Stops and resets the stop watch.
Clears start and total time