14 lines
267 B
Plaintext
14 lines
267 B
Plaintext
sub init()
|
|
m.top.functionName = "monitorQuickConnect"
|
|
end sub
|
|
|
|
sub monitorQuickConnect()
|
|
authenticated = checkQuickConnect(m.top.secret)
|
|
|
|
if authenticated = true
|
|
m.top.authenticated = 1
|
|
else
|
|
m.top.authenticated = -1
|
|
end if
|
|
end sub
|