mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
11 lines
No EOL
144 B
C
11 lines
No EOL
144 B
C
#ifndef COMMON_REF_COUNT_H
|
|
#define COMMON_REF_COUNT_H
|
|
|
|
DECLARE_STRUCT(TRefCnt);
|
|
|
|
struct TRefCnt {
|
|
void* vfptr;
|
|
uint32_t m_refcnt;
|
|
};
|
|
|
|
#endif |