Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Returns the last known error.

Syntax

Code Block
Error = SRP_Zip_GetLastError()

Returns

A message describing the nature of the error.

Remarks

Call this routine whenever any of the other SRP Zip Utility routines fails to provide expected results.

Example

Code Block
// Always test for errors
hZip = SRP_Zip_Open(TestZIP)
If hZip EQ 0 then
   Call Msg(@Window, SRP_Zip_GetLastError())
end