| 39 | |
| 40 | |
| 41 | void SendToKernelReader(char* data) { |
| 42 | PipeClient pipeClient("KernelReaderTest"); |
| 43 | pipeClient.Connect(KERNEL_PIPE_NAME); |
| 44 | pipeClient.Send(data); |
| 45 | pipeClient.Disconnect(); |
| 46 | } |
| 47 | |
| 48 | |
| 49 | void SendToDllReader(char* data) { |
no test coverage detected