typedef enum LockFlagsConstants2 Constants
{
LOCK_COMPUTER = 0x01,
LOCK_APP = 0x02,
LOCK_APP_PATH = 0x04,
} LockFlagsConstants2;
The LockFlagsConstants2 constants define the level at which locking will be performed.
Constant Description
Constant |
Description |
LOCK_COMPUTER |
[0x01] Use this flag to lock the module at the computer level. This flag prevents all applications that do not unlock the module from using it. |
LOCK_APP |
[0x02] Use this flag to lock the module at the application level for the current application instance. |
LOCK_APP_PATH |
[0x04] Use this flag to lock the an application that was unlocked using UNLOCK_APP_PATH. You should lock this application when you uninstall it. |
See Also