Changes between Version 3 and Version 4 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Utility/GetKernelVer
- Timestamp:
- 03/12/25 07:49:02 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Utility/GetKernelVer
v3 v4 2 2 Gets the OS (kernel) version 3 3 4 {{{ 4 {{{#!c++ 5 5 int GetKernelVer(char *pszKernelVerNum = NULL, int nMaxLen = 11); 6 6 }}} … … 20 20 == Examples == 21 21 22 {{{ 22 {{{#!c++ 23 23 int n = GetKernelVer(); 24 24 if(n < 20100628) … … 28 28 }}} 29 29 30 {{{ 30 {{{#!c++ 31 31 char szVer[20]; 32 32 GetKernelVer(szVer, 18);