mirror of
https://github.com/StrikerX3/StrikeBox.git
synced 2025-04-02 10:42:17 -04:00
12 lines
143 B
C++
12 lines
143 B
C++
#pragma once
|
|
|
|
#include "stdint.h"
|
|
|
|
namespace strikebox {
|
|
|
|
/*!
|
|
* Sets the current thread's name.
|
|
*/
|
|
void Thread_SetName(const char *name);
|
|
|
|
}
|