| 270 | } |
| 271 | |
| 272 | char* GetLastErrorDesc() |
| 273 | { |
| 274 | char* msgBuf = NULL; |
| 275 | FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, |
| 276 | NULL, GetLastError(), MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), |
| 277 | reinterpret_cast<LPSTR>(&msgBuf), 0, NULL); |
| 278 | return msgBuf; |
| 279 | } |
| 280 | |
| 281 | bool PipeSendRequest(PipeData &data) |
| 282 | { |
no outgoing calls
no test coverage detected