• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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