mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
14 lines
205 B
C
14 lines
205 B
C
|
|
#ifndef COMMON_RC_STRING_H
|
||
|
|
#define COMMON_RC_STRING_H
|
||
|
|
|
||
|
|
#include "common/refcount.h"
|
||
|
|
|
||
|
|
DECLARE_STRUCT(RCString);
|
||
|
|
|
||
|
|
// struct RCString : TRefCnt
|
||
|
|
struct RCString {
|
||
|
|
TRefCnt b_base;
|
||
|
|
uint8_t* m_str;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|