mirror of
https://github.com/love2d/megasource.git
synced 2026-08-16 16:21:13 +02:00
11 lines
238 B
C
11 lines
238 B
C
|
|
#include "config.h"
|
|
|
|
#include "atomic.h"
|
|
|
|
|
|
extern inline void InitRef(RefCount *ptr, uint value);
|
|
extern inline uint ReadRef(RefCount *ptr);
|
|
extern inline uint IncrementRef(RefCount *ptr);
|
|
extern inline uint DecrementRef(RefCount *ptr);
|