Files
int2ssl/Utility.h
T
2015-02-15 18:10:01 +03:00

20 lines
475 B
C++

#ifndef UTILITY_H
#define UTILITY_H
// C++ standard includes
#include <stdarg.h>
// int2ssl includes
#include "Hacks/CArchive.h"
// Third party includes
UINT ReadMSBWord(CArchive& ar, uint16_t& wValue);
UINT ReadMSBULong(CArchive& ar, ULONG& ulValue);
std::string format(std::string format, ...);
std::string format(std::string format, std::string value);
std::string replace(std::string subject, std::string search, std::string replacement);
#endif