Returns the last known error.

Syntax

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

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