mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
10 lines
170 B
C++
10 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
|