| 38 | } |
| 39 | |
| 40 | void CDirFunctions::WriteFileContent(const std::string & szFileName, const std::string & szText) |
| 41 | { |
| 42 | std::ofstream f(szFileName.c_str(), std::ofstream::out | std::ofstream::app); |
| 43 | f << szText.c_str() << std::endl; |
| 44 | f.close(); |
| 45 | } |
| 46 | |
| 47 | bool CDirFunctions::ManageFsRedirection(bool bDisable, PVOID pCookie, PVOID * ppCookie) |
| 48 | { |
nothing calls this directly
no outgoing calls
no test coverage detected