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: fe359f0435e706b53eb28b0af2e8fea037beae39 (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/String.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