-
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* nn/uds: Add initial headers * nn/uds: Minor fixes and improvements
- Loading branch information
1 parent
263c036
commit 4933211
Showing
6 changed files
with
585 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#pragma once | ||
|
||
/** | ||
* \defgroup nn_uds nn_uds | ||
* UDS Network functions | ||
*/ | ||
|
||
#include <nn/uds/Cafe.h> |
Oops, something went wrong.