| 233 | } |
| 234 | |
| 235 | std::string CThread::GetThreadCustomName() // TODO: Add other threads |
| 236 | { |
| 237 | switch (m_iThreadCode) |
| 238 | { |
| 239 | case SELF_THREAD_DIRFUNCS: |
| 240 | return xorstr("Dir check thread").crypt_get(); |
| 241 | } |
| 242 | |
| 243 | return std::string(xorstr("Unknown thread: ").crypt_get()) + std::to_string(m_iThreadCode); |
| 244 | } |
| 245 | |
| 246 | DWORD CThread::GetStartAddress() |
| 247 | { |
no outgoing calls
no test coverage detected