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