scs: implement EventHandlerThread for shell

This commit is contained in:
Michael Scire 2021-03-17 21:01:04 -07:00 committed by SciresM
parent aa2dce7316
commit 1a1b1355ba
7 changed files with 377 additions and 5 deletions

View file

@ -22,4 +22,10 @@ namespace ams::htc::tenv {
char str[0x40];
};
constexpr inline auto PathLengthMax = 0x300;
struct alignas(4) Path {
char str[PathLengthMax];
};
}