| 1 | = ResetPrevTime = |
| 2 | Resets the previous time so the next call to IsTimeChanged will return true. |
| 3 | |
| 4 | {{{ |
| 5 | void ResetPrevTime(void); |
| 6 | }}} |
| 7 | |
| 8 | == Parameters == |
| 9 | |
| 10 | This function does not accept any parameters. |
| 11 | |
| 12 | == Return Value == |
| 13 | |
| 14 | This function does not return any result. |
| 15 | |
| 16 | == Remarks == |
| 17 | |
| 18 | |
| 19 | == Examples == |
| 20 | |
| 21 | {{{ |
| 22 | // After clearing a menu display reset the previous time so the time will be redrawn right away |
| 23 | ResetPrevTime(); |
| 24 | }}} |
| 25 | |
| 26 | |
| 27 | == See Also == |
| 28 | |
| 29 | * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/IsTimeChanged IsTimeChanged] |
| 30 | |