blob: df803860b06f7db1cf4b6671b0475931e87b8205 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* -------------------------------------------
Copyright Mahrouss Logic
------------------------------------------- */
//
// Created by Amlal on 3/18/24
//
#ifndef __THREAD_API__
#define __THREAD_API__
#include <System.Core/Headers/Defines.hxx>
/// @brief Thread Information Block, which holds information about the running
/// thread.
typedef QWordType ThreadRef;
/// @brief Main application thread.
CA_EXTERN_C ThreadRef kMainThread;
#endif // __THREAD_API__
|