mirror of
https://github.com/devkitPro/wut.git
synced 2026-05-20 02:38:14 -05:00
Some checks failed
C/C++ CI / ubuntu-latest (push) Has been cancelled
`find . -regex '.*\.\(cpp\|hpp\|cu\|cuh\|c\|h\)' -exec clang-format -style=file -i {} \;`
30 lines
299 B
C++
30 lines
299 B
C++
#pragma once
|
|
|
|
#include <wut.h>
|
|
|
|
#ifdef __cplusplus
|
|
|
|
namespace nn
|
|
{
|
|
|
|
namespace cfg
|
|
{
|
|
|
|
namespace CTR
|
|
{
|
|
|
|
//! Represents a console username, used in UDS and DLP
|
|
struct UserName
|
|
{
|
|
char16_t name[12];
|
|
};
|
|
WUT_CHECK_SIZE(UserName, 0x18);
|
|
|
|
} // namespace CTR
|
|
|
|
} // namespace cfg
|
|
|
|
} // namespace nn
|
|
|
|
#endif
|