When TCC starts, it looks for a TCStart.btm.
If found, it executes TCStart.btm (Initialize).
When TCC ends, it looks for a TCExit.btm.
If found, it executes TCExit.btm (Terminate).
I would like that ability with .BTM files.
Example;
Output;
Read more
If found, it executes TCStart.btm (Initialize).
When TCC ends, it looks for a TCExit.btm.
If found, it executes TCExit.btm (Terminate).
I would like that ability with .BTM files.
Example;
Bash:
echo Before Init...
echo After Init...
echo Processing...
echo Before Exit...
echo After Exit...
quit
:BTM_Init
echo BTM_Init
Return
:BTM_Exit
echo BTM_Exit
Return
Output;
Bash:
BTM_Init
Before Init...
After Init...
Read more