binana/profile/3.3.5a-windows/include/common/rcstring.h

14 lines
No EOL
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