|
wut v1.9.1
Wii U Toolchain
|

Data Structures | |
| struct | OSStopWatchAtomic |
Typedefs | |
| typedef struct OSStopWatchAtomic | OSStopWatchAtomic |
Functions | |
| OSTime | OSStopWatchStart (OSStopWatchAtomic *stopWatch) |
| Start the stopwatch. | |
| OSTime | OSStopWatchStop (OSStopWatchAtomic *stopWatch) |
| Stop the stopwatch. | |
| OSTime | OSStopWatchLap (OSStopWatchAtomic *stopWatch) |
| Get the current time on the stopwatch. | |
| OSTime | OSStopWatchReset (OSStopWatchAtomic *stopWatch) |
| Stops and resets the stop watch. | |
| 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 16 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