31 lines
336 B
C++
31 lines
336 B
C++
|
|
#pragma once
|
|
|
|
#if !defined(MIJIN_UTIL_OS_HPP_INCLUDED)
|
|
#define MIJIN_UTIL_OS_HPP_INCLUDED 1
|
|
|
|
namespace mijin
|
|
{
|
|
|
|
//
|
|
// public defines
|
|
//
|
|
|
|
//
|
|
// public constants
|
|
//
|
|
|
|
//
|
|
// public types
|
|
//
|
|
|
|
//
|
|
// public functions
|
|
//
|
|
|
|
void setCurrentThreadName(const char* threadName);
|
|
|
|
} // namespace mijin
|
|
|
|
#endif // !defined(MIJIN_UTIL_OS_HPP_INCLUDED)
|