Changes between Initial Version and Version 1 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Utility/GetLoaderVer
- Timestamp:
- 08/26/10 11:04:09 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Utility/GetLoaderVer
v1 v1 1 = GetLoaderVer = 2 Gets the Loader (OPI card boot loader) version 3 4 {{{ 5 int GetLoaderVer(); 6 }}} 7 8 == Parameters == 9 10 Function does not accept any parameters. 11 12 == Return Value == 13 14 Returns numeric representation of the loader version multiplied by 100. For example version "1.08o" will result as 108. 15 16 == Remarks == 17 18 19 == Examples == 20 21 {{{ 22 int n = GetLoaderVer(); 23 if(n < 108) 24 { 25 DisplayText(0, 0, "Loader update recommended"); 26 } 27 }}} 28 29 == See Also == 30