mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
19 lines
353 B
C
Executable File
19 lines
353 B
C
Executable File
// FormatUtils.h
|
|
|
|
#ifndef __FORMATUTILS_H
|
|
#define __FORMATUTILS_H
|
|
|
|
#include "Common/Types.h"
|
|
#include "Common/MyString.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
|