maeSetHistoryLock
maeSetHistoryLock(
t_historyName
g_lock
[ ?session t_sessionName ])
=> t / nil
Description
Locks or unlocks the given history for the given ADE Assembler session.
Arguments
|
t_historyName
|
Name of the history to be locked or unlocked
|
|
g_lock
|
Specifies the lock status.
-
t: Locks the specified history. -
nil: Unlocks the specified history.
|
|
?session t_sessionName
|
|
|
Name of the session.
If not specified, the current session is used.
|
Value Returned
|
t
|
The setup is saved successfully.
|
|
nil
|
The setup is not saved.
|
Examples
Locks the history Interactive.1.
maeSetHistoryLock("Interactive.1" t)
=> t
Return to top