MCPcopy Create free account
hub / github.com/bailey27/cppcryptfs / StartNamedPipeServer

Function StartNamedPipeServer

cppcryptfs/cppcryptfs.cpp:212–225  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

210}
211
212static bool StartNamedPipeServer()
213{
214 static NamedPipeServerContext ctx;
215
216 ctx.context = &theApp;
217 ctx.callback = NamedPipeServerCallback;
218
219 auto hThread = CreateThread(NULL, 0, NamedPipeServerThreadProc, &ctx, 0, NULL);
220
221 if (hThread != NULL)
222 CloseHandle(hThread);
223
224 return hThread != NULL;
225}
226
227// CcppcryptfsApp initialization
228

Callers 1

InitInstanceMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected