windows-nt/Source/XPSP1/NT/admin/cys/test/common.vbi

49 lines
751 B
Plaintext
Raw Normal View History

2020-09-26 03:20:57 -05:00
' common.vbi
' common routines and definitions
'
const NEG_ONE = &HFFFFFFFF
Sub Echo(byref message)
wscript.echo message
End sub
' Echos the contents of the Err object.
sub DumpErr
dim errnum
errnum = Err.Number
Echo "Error 0x" & CStr(Hex(errnum)) & " occurred."
if len(Err.Description) then
Echo "Description: " & Err.Description
end if
if len(Err.Source) then
Echo "Source : " & Err.Source
end if
if len(Err.HelpContext) then
Echo "Context : " & Err.HelpContext
end if
if len(Err.HelpFile) then
Echo "Help File : " & Err.HelpFile
end if
end sub
sub DumpErrAndQuit
dim errnum
errnum = Err.Number
DumpErr
wscript.quit(errnum)
end sub
'
' end common.vbi
'