feat(profile): refactor lua, bc code

This commit is contained in:
phaneron 2026-04-01 17:37:40 -04:00
parent e79ee08905
commit 37db5336e4
40 changed files with 3424 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#ifndef BC_STRING_CONVERSION_UTF16_TO_UTF8_H
#define BC_STRING_CONVERSION_UTF16_TO_UTF8_H
DECLARE_STRUCT(Blizzard__StringConversion_UTF16ToUTF8__ToNative);
#include "bc/util/buffer.h"
// class Blizzard::UTF16ToUTF8::ToNative : Blizzard::Util::Buffer<300, wchar_t>
struct Blizzard__StringConversion_UTF16ToUTF8__ToNative {
// Never ever use wchar_t!!!
Blizzard__Util__Buffer_300_uint16_t _;
};
#endif