F4MP/codigos originales/tiltedcode/Code/base/threading/ThreadUtils.h
2026-01-06 18:53:59 +01:00

10 lines
228 B
C++

#pragma once
namespace Base
{
// set to thread handle
bool SetThreadName(void* apThreadHandle, const char* apThreadName);
// call this on current thread
bool SetCurrentThreadName(const char* apThreadName);
} // namespace Base