15 lines
212 B
C
15 lines
212 B
C
#if PlatformIsWindows
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#define UNICODE
|
|
#include <Windows.h>
|
|
|
|
i16 FiberId(void)
|
|
{
|
|
return (i16)(i64)GetFiberData();
|
|
}
|
|
|
|
#else
|
|
# error FiberId not implemented for this platform
|
|
#endif
|