xref: /aosp_15_r20/external/lzma/CPP/7zip/UI/FileManager/SplitUtils.h (revision f6dc9357d832569d4d1f5d24eacdb3935a1ae8e6)
1 // SplitUtils.h
2 
3 #ifndef ZIP7_INC_SPLIT_UTILS_H
4 #define ZIP7_INC_SPLIT_UTILS_H
5 
6 #include "../../../Common/MyTypes.h"
7 #include "../../../Common/MyString.h"
8 
9 #include "../../../Windows/Control/ComboBox.h"
10 
11 bool ParseVolumeSizes(const UString &s, CRecordVector<UInt64> &values);
12 void AddVolumeItems(NWindows::NControl::CComboBox &volumeCombo);
13 UInt64 GetNumberOfVolumes(UInt64 size, const CRecordVector<UInt64> &volSizes);
14 
15 #endif
16