| 33 | #include "common.h" |
| 34 | |
| 35 | struct NamedPipeServerContext { |
| 36 | void (*callback)(void* ctx, HANDLE hPipe); |
| 37 | void* context; |
| 38 | }; |
| 39 | |
| 40 | WCHAR *ReadFromNamedPipe(HANDLE hPipe, WCHAR *buf, size_t buflen /* includes null terminator */); |
| 41 |
nothing calls this directly
no outgoing calls
no test coverage detected