cOMS/platform/win32/threading/Spinlock.h

16 lines
285 B
C

/**
* Jingga
*
* @copyright Jingga
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
#ifndef TOS_PLATFORM_WIN32_THREADING_SPINLOCK_H
#define TOS_PLATFORM_WIN32_THREADING_SPINLOCK_H
#include <windows.h>
typedef volatile long spinlock32;
#endif