| 196 | } |
| 197 | |
| 198 | static void __cdecl RunOnMain(uv_async_t* async, std::function<void()> func) { |
| 199 | TokenData* Token = static_cast<TokenData*>(async->data); |
| 200 | Token->func = func; |
| 201 | uv_async_send(async); |
| 202 | } |
| 203 | |
| 204 | static void __cdecl RunOnMain(std::function<void()> func) { |
| 205 | uv_async_t* async = GetAsyncToken(); |
nothing calls this directly
no outgoing calls
no test coverage detected