wut/include/nn/cfg/CTR.h
GaryOderNichts 2c98cc91aa
Some checks failed
C/C++ CI / ubuntu-latest (push) Has been cancelled
Run clang-format
`find . -regex '.*\.\(cpp\|hpp\|cu\|cuh\|c\|h\)' -exec clang-format -style=file -i {} \;`
2025-06-05 11:06:04 +01:00

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