intial commit

This commit is contained in:
2023-05-29 14:51:44 +02:00
commit da781b87f2
38 changed files with 4842 additions and 0 deletions

30
source/mijin/util/os.hpp Normal file
View File

@@ -0,0 +1,30 @@
#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)