mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
11 lines
170 B
C++
11 lines
170 B
C++
|
|
#ifndef STORM_ATOMIC_HPP
|
||
|
|
#define STORM_ATOMIC_HPP
|
||
|
|
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
int32_t SInterlockedDecrement(int32_t* ptr);
|
||
|
|
|
||
|
|
int32_t SInterlockedIncrement(int32_t* ptr);
|
||
|
|
|
||
|
|
#endif
|