mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
13 lines
118 B
C
13 lines
118 B
C
|
|
#ifndef THREAD_H
|
|
#define THREAD_H 1
|
|
|
|
typedef long ThreadId;
|
|
|
|
struct Thread
|
|
{
|
|
static ThreadId getId();
|
|
};
|
|
|
|
#endif
|