read an STL string
| 180 | |
| 181 | /// read an STL string |
| 182 | const std::string readSTLString(void* offset) |
| 183 | { |
| 184 | std::string* str = (std::string*)offset; |
| 185 | return *str; |
| 186 | }; |
| 187 | /// read an STL string |
| 188 | size_t readSTLString(void* offset, char* buffer, size_t bufcapacity) |
| 189 | { |