#Region Service Attributes
#StartAtBoot: True
#End Region
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
Dim si As SmsInterceptor
End Sub
Sub Service_Creates
End Sub
Sub si_MessageReceived (From As String, Body As String) As Boolean
Log("SMS RECEIVED")
End Sub
Sub Service_Start (StartingIntent As Intent)
si.Initialize2("si",999)
End Sub
Sub Service_Destroy
End Sub