type TCefZipReaderRef = class(TCefBaseRefCountedRef, ICefZipReader)
This item has no description.
![]() |
function MoveToFirstFile: Boolean; |
![]() |
function MoveToNextFile: Boolean; |
![]() |
function MoveToFile(const fileName: ustring; caseSensitive: Boolean): Boolean; |
![]() |
function Close: Boolean; |
![]() |
function GetFileName: ustring; |
![]() |
function GetFileSize: Int64; |
![]() |
function GetFileLastModified: TCefBaseTime; |
![]() |
function OpenFile(const password: ustring): Boolean; |
![]() |
function CloseFile: Boolean; |
![]() |
function ReadFile(buffer: Pointer; bufferSize: NativeUInt): Integer; |
![]() |
function Tell: Int64; |
![]() |
function Eof: Boolean; |
![]() |
class function UnWrap(data: Pointer): ICefZipReader; |
![]() |
class function New(const stream: ICefStreamReader): ICefZipReader; |
![]() |
function MoveToFirstFile: Boolean; |
This item has no description. Showing description inherited from ICefZipReader.MoveToFirstFile. Moves the cursor to the first file in the archive. Returns true (1) if the cursor position was set successfully. |
![]() |
function MoveToNextFile: Boolean; |
This item has no description. Showing description inherited from ICefZipReader.MoveToNextFile. Moves the cursor to the next file in the archive. Returns true (1) if the cursor position was set successfully. |
![]() |
function MoveToFile(const fileName: ustring; caseSensitive: Boolean): Boolean; |
This item has no description. Showing description inherited from ICefZipReader.MoveToFile. Moves the cursor to the specified file in the archive. If |caseSensitive| is true (1) then the search will be case sensitive. Returns true (1) if the cursor position was set successfully. |
![]() |
function Close: Boolean; |
This item has no description. Showing description inherited from ICefZipReader.Close. Closes the archive. This should be called directly to ensure that cleanup occurs on the correct thread. |
![]() |
function GetFileName: ustring; |
This item has no description. Showing description inherited from ICefZipReader.GetFileName. Returns the name of the file. |
![]() |
function GetFileSize: Int64; |
This item has no description. Showing description inherited from ICefZipReader.GetFileSize. Returns the uncompressed size of the file. |
![]() |
function GetFileLastModified: TCefBaseTime; |
This item has no description. Showing description inherited from ICefZipReader.GetFileLastModified. Returns the last modified timestamp for the file. |
![]() |
function OpenFile(const password: ustring): Boolean; |
This item has no description. Showing description inherited from ICefZipReader.OpenFile. Opens the file for reading of uncompressed data. A read password may optionally be specified. |
![]() |
function CloseFile: Boolean; |
This item has no description. Showing description inherited from ICefZipReader.CloseFile. Closes the file. |
![]() |
function ReadFile(buffer: Pointer; bufferSize: NativeUInt): Integer; |
This item has no description. Showing description inherited from ICefZipReader.ReadFile. Read uncompressed file contents into the specified buffer. Returns < 0 if an error occurred, 0 if at the end of file, or the number of bytes read. |
![]() |
function Tell: Int64; |
This item has no description. Showing description inherited from ICefZipReader.Tell. Returns the current offset in the uncompressed file contents. |
![]() |
function Eof: Boolean; |
This item has no description. Showing description inherited from ICefZipReader.Eof. Returns true (1) if at end of the file contents. |
![]() |
class function UnWrap(data: Pointer): ICefZipReader; |
This item has no description. |
![]() |
class function New(const stream: ICefStreamReader): ICefZipReader; |
This item has no description. |