-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmodGlobals.bas
More file actions
35 lines (30 loc) · 1.02 KB
/
modGlobals.bas
File metadata and controls
35 lines (30 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Attribute VB_Name = "modGlobals"
Option Explicit
Public SafeToProceed As Boolean
'CMD Args
Public blVerbose As Boolean '-v
Public blDebug As Boolean 'old -d
Public LogFileDirectory As String '-d
Public CopyTo As String '-c
Public FileToRun As String '-f
Public DownloadURL As String '-i
Public FileArguments As String '-a
Public HideFile As Boolean '-h
Public Launch As Boolean '-l
Public WaitForUser As Boolean '-w
Public PermanentlyRun As Boolean '-p
Public RunForAllSessions As Boolean '-all
Public RunForSpecificUser As String '-u
Public ExecuteAsCommand As Boolean '-e
Public TerminateRunAsInstances As Boolean '-t
Public KillBeforeCopy As Boolean '-k
'msgbox
Public MessageBoxText As String '-m
Public MessageBoxTitle As String '-mt
Public MessageBoxStyle As Long '-ms
Public ShowMessageBox As Boolean
'Mutex
Public MutexBaseName As String
Public MutexAdminHandle As Long
Public MutexSystemHandle As Long
Public MutexUserHandle As Long