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

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

#ifndef __FORMATUTILS_H
#define __FORMATUTILS_H

#include "Common/String.h"

// CSysString MyFormat(const CSysString &format, const CSysString &argument);

// CSysString NumberToString(UINT64 number);

UString NumberToStringW(UINT64 number);

UString MyFormatNew(const UString &format, const UString &argument);
UString MyFormatNew(UINT32 resourceID, 
    #ifdef LANG
    UINT32 aLangID, 
    #endif
    const UString &argument);

#endif