read a null-terminated C string
| 229 | |
| 230 | /// read a null-terminated C string |
| 231 | const std::string readCString(void* offset) |
| 232 | { |
| 233 | return std::string((char*)offset); |
| 234 | }; |
| 235 | |
| 236 | /// @return true if the process is suspended |
| 237 | bool isSuspended() |