Cube-World-Commands-Mod/cwmods/msvc/wstring.h

23 lines
395 B
C
Raw Normal View History

2019-09-23 07:50:21 +08:00
#ifndef WSTRING_H
#define WSTRING_H
#include <cstdint>
namespace msvc {
union wstring_data_union {
wchar_t sbo[8];
wchar_t *ptr;
};
class wstring {
public:
wstring_data_union data;
int64_t size;
int64_t cap;
wstring(wchar_t* str);
~wstring();
};
};
#endif // WSTRING_H