Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

49 lines
751 B

' 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
'