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

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

#ifndef __FORMATUTILS_H
#define __FORMATUTILS_H

#include "Common/Types.h"
#include "Common/String.h"

UString NumberToString(UInt64 number);

UString MyFormatNew(const UString &format, const UString &argument);
UString MyFormatNew(UINT resourceID, 
    #ifdef LANG
    UInt32 langID, 
    #endif
    const UString &argument);

#endif