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

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