MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / HxCreateDetachedThread

Function HxCreateDetachedThread

include/hx/Thread.h:80–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

78#define THREAD_FUNC_RET return 0;
79
80inline bool HxCreateDetachedThread(DWORD (WINAPI *func)(void *), void *param)
81{
82 return (CreateThread(NULL, 0, func, param, 0, 0) != 0);
83}
84
85#else
86

Callers 1

runThreadFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected