MorePreferences.c File Reference
#include "MorePrefix.h"
#include "MorePreferences.h"
#include "MorePrivate.h"
Include dependency graph for MorePreferences.c:
Go to the source code of this file.
Functions | |
SecurityAutoLockType | MPrefGetPalmAutolock (MOREPALMOS_NOPARAMS) |
Returns security auto lock setting of handheld. If not supported on this handheld, returns never. |
Function Documentation
|
Returns security auto lock setting of handheld. If not supported on this handheld, returns never.
Definition at line 23 of file MorePreferences.c. 00024 { 00025 if ( PrefGetPreference( prefVersion ) < prefAutoLockTypeMinVer ) 00026 return never; 00027 else 00028 return (SecurityAutoLockType)PrefGetPreference( prefAutoLockType ); 00029 }
|