mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 06:07:07 -06:00
22 lines
456 B
C
Executable File
22 lines
456 B
C
Executable File
// 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
|