Returns the last known error.
Syntax
Error = SRP_Zip("GetLastError")
Returns
A message describing the nature of the error.
Remarks
Call this service whenever any of the other SRP Zip Utility services fails to provide expected results.
Example
// Test for errors
hZip = SRP_Zip("Open", TestZIP)
If hZip EQ 0 then
Call Msg(@Window, SRP_Zip("GetLastError"))
end else
SRP_Zip("Close", hZip)
end