1 // FormatUtils.h 2 3 #ifndef __FORMAT_UTILS_H 4 #define __FORMAT_UTILS_H 5 6 #include "../../../Common/MyTypes.h" 7 #include "../../../Common/MyString.h" 8 9 UString NumberToString(UInt64 number); 10 11 UString MyFormatNew(const UString &format, const UString &argument); 12 UString MyFormatNew(UINT resourceID, const UString &argument); 13 14 #endif 15