1
0
Fork 0
x64dbg/src/dbg/stringformat.h

12 lines
313 B
C++

#ifndef _STRINGFORMAT_H
#define _STRINGFORMAT_H
#include "_global.h"
typedef const char* FormatValueType;
typedef std::vector<FormatValueType> FormatValueVector;
String stringformat(String format, const FormatValueVector & values);
String stringformatinline(String format);
#endif //_STRINGFORMAT_H