| 14 | } |
| 15 | |
| 16 | TextThread::TextThread(ThreadParam tp, HookParam hp, std::optional<std::wstring> name) : |
| 17 | handle(threadCounter++), |
| 18 | name(name.value_or(StringToWideString(hp.name))), |
| 19 | tp(tp), |
| 20 | hp(hp) |
| 21 | {} |
| 22 | |
| 23 | void TextThread::Start() |
| 24 | { |
nothing calls this directly
no test coverage detected