Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Windows/FileIO.h')
-rwxr-xr-xWindows/FileIO.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Windows/FileIO.h b/Windows/FileIO.h
index 36f69df7..b4d8361d 100755
--- a/Windows/FileIO.h
+++ b/Windows/FileIO.h
@@ -60,6 +60,7 @@ public:
DWORD creationDisposition, DWORD flagsAndAttributes);
bool Open(LPCWSTR fileName);
#endif
+ bool ReadPart(void *data, UINT32 size, UINT32 &processedSize);
bool Read(void *data, UINT32 size, UINT32 &processedSize);
};
@@ -90,6 +91,7 @@ public:
bool SetTime(const FILETIME *creationTime,
const FILETIME *lastAccessTime, const FILETIME *lastWriteTime);
bool SetLastWriteTime(const FILETIME *lastWriteTime);
+ bool WritePart(const void *data, UINT32 size, UINT32 &processedSize);
bool Write(const void *data, UINT32 size, UINT32 &processedSize);
bool SetEndOfFile();
bool SetLength(UINT64 length);