|
|
@ -87,7 +87,7 @@ namespace
|
|
|
|
void readSTLVector(const uint32_t address, t_vecTriplet & triplet);
|
|
|
|
void readSTLVector(const uint32_t address, t_vecTriplet & triplet);
|
|
|
|
const std::string readSTLString (uint32_t offset);
|
|
|
|
const std::string readSTLString (uint32_t offset);
|
|
|
|
size_t readSTLString (uint32_t offset, char * buffer, size_t bufcapacity);
|
|
|
|
size_t readSTLString (uint32_t offset, char * buffer, size_t bufcapacity);
|
|
|
|
void writeSTLString(const uint32_t address, const std::string writeString){};
|
|
|
|
size_t writeSTLString(const uint32_t address, const std::string writeString);
|
|
|
|
// get class name of an object with rtti/type info
|
|
|
|
// get class name of an object with rtti/type info
|
|
|
|
std::string readClassName(uint32_t vptr);
|
|
|
|
std::string readClassName(uint32_t vptr);
|
|
|
|
|
|
|
|
|
|
|
@ -585,6 +585,11 @@ const string NormalProcess::readSTLString (uint32_t offset)
|
|
|
|
return stl.readSTLString(offset);
|
|
|
|
return stl.readSTLString(offset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
size_t NormalProcess::writeSTLString (uint32_t address, string str)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return stl.writeSTLString(address, str);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string NormalProcess::readClassName (uint32_t vptr)
|
|
|
|
string NormalProcess::readClassName (uint32_t vptr)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return stl.readClassName(vptr);
|
|
|
|
return stl.readClassName(vptr);
|
|
|
|