Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
long VTIL_ResetBlockedTxTpEoma(); //Form 1 long VTIL_ResetBlockedTxTpEoma(dbNode node); //Form 2
on start { long res; res = VTIL_BlockTxTpEoma(1); // Block the TP.EoMA message if(res != 0) { write("An error occurred: %d", res); } } on key 'a'{ long res; res = VTIL_ResetBlockedTxTpEoma(); // Resets blocked TP.EoMA message. if(res != 0) { write("An error occurred: %d", res); } }