mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 01:15:00 -06:00
20 lines
343 B
C++
Executable File
20 lines
343 B
C++
Executable File
// CoderMixer.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "CoderMixer.h"
|
|
|
|
namespace NCoderMixer {
|
|
|
|
void CCoderInfo::SetCoderInfo(const UInt64 *inSize, const UInt64 *outSize)
|
|
{
|
|
InSizeAssigned = (inSize != 0);
|
|
if (InSizeAssigned)
|
|
InSizeValue = *inSize;
|
|
OutSizeAssigned = (outSize != 0);
|
|
if (OutSizeAssigned)
|
|
OutSizeValue = *outSize;
|
|
}
|
|
|
|
}
|