F4MP/tiltedcode/Code/base/threading/ThreadUtils.h

11 lines
228 B
C
Raw Normal View History

#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