Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SplitUtils.h « FileManager « UI « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 641dfe6b7630b289222b9e5820a012771b265e91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SplitUtils.h

#ifndef __SPLIT_UTILS_H
#define __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