mirror of
https://github.com/sfall-team/int2ssl.git
synced 2026-07-27 16:52:42 -07:00
20 lines
475 B
C++
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
|