blob: 825ff6d2edb2d27a2d63dfbe9dfa9856c59c34db (
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
|