mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 11:14:58 -06:00
16 lines
428 B
C
Executable File
16 lines
428 B
C
Executable File
// SplitUtils.h
|
|
|
|
#ifndef ZIP7_INC_SPLIT_UTILS_H
|
|
#define ZIP7_INC_SPLIT_UTILS_H
|
|
|
|
#include "../../../Common/MyTypes.h"
|
|
#include "../../../Common/MyString.h"
|
|
|
|
#include "../../../Windows/Control/ComboBox.h"
|
|
|
|
bool ParseVolumeSizes(const UString &s, CRecordVector<UInt64> &values);
|
|
void AddVolumeItems(NWindows::NControl::CComboBox &volumeCombo);
|
|
UInt64 GetNumberOfVolumes(UInt64 size, const CRecordVector<UInt64> &volSizes);
|
|
|
|
#endif
|