mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
15 lines
339 B
C
Executable File
15 lines
339 B
C
Executable File
// FormatUtils.h
|
|
|
|
#ifndef ZIP7_INC_FORMAT_UTILS_H
|
|
#define ZIP7_INC_FORMAT_UTILS_H
|
|
|
|
#include "../../../Common/MyTypes.h"
|
|
#include "../../../Common/MyString.h"
|
|
|
|
UString NumberToString(UInt64 number);
|
|
|
|
UString MyFormatNew(const UString &format, const UString &argument);
|
|
UString MyFormatNew(UINT resourceID, const UString &argument);
|
|
|
|
#endif
|