mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 05:32:21 +00:00
[CABMAN] Replace some dynamically allocated strings with std::string
CORE-17231
This commit is contained in:
parent
58092fb4da
commit
7394d12f7e
9 changed files with 204 additions and 275 deletions
|
@ -26,12 +26,12 @@ public:
|
|||
virtual ULONG Compress(void* OutputBuffer,
|
||||
void* InputBuffer,
|
||||
ULONG InputLength,
|
||||
PULONG OutputLength);
|
||||
PULONG OutputLength) override;
|
||||
/* Uncompresses a data block */
|
||||
virtual ULONG Uncompress(void* OutputBuffer,
|
||||
void* InputBuffer,
|
||||
ULONG InputLength,
|
||||
PULONG OutputLength);
|
||||
PULONG OutputLength) override;
|
||||
private:
|
||||
int Status;
|
||||
z_stream ZStream; /* Zlib stream */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue