Update some doxygen related headers.

This commit is contained in:
James Benton 2018-06-14 14:11:22 +01:00
parent 2420cf70d5
commit 26af965373
6 changed files with 25 additions and 4 deletions

View File

@ -16,6 +16,7 @@ if(DOXYGEN_FOUND)
set(DOXYGEN_OPTIMIZE_OUTPUT_FOR_C YES)
set(DOXYGEN_INLINE_SIMPLE_STRUCTS YES)
set(DOXYGEN_EXTRACT_ALL YES)
set(DOXYGEN_EXTRACT_STATIC YES)
set(DOXYGEN_HIDE_SCOPE_NAMES YES)
set(DOXYGEN_SORT_MEMBER_DOCS NO)
set(DOXYGEN_RECURSIVE YES)

View File

@ -2,7 +2,7 @@
#include <wut.h>
/**
* \defgroup coreinit_atomic64 Atomic 64 bit
* \defgroup coreinit_atomic64 Atomic Operations 64 bit
* \ingroup coreinit
*
* These functions are used for atomically operating on 64 bit values in memory.

View File

@ -2,7 +2,7 @@
#include <wut.h>
/**
* \defgroup coreinit_core Core Identification
* \defgroup coreinit_core Core
* \ingroup coreinit
* @{
*/

View File

@ -2,7 +2,7 @@
#include <wut.h>
/**
* \defgroup coreinit_ios Core Identification
* \defgroup coreinit_ios IOS
* \ingroup coreinit
* @{
*/

View File

@ -2,7 +2,7 @@
#include <wut.h>
/**
* \defgroup coreinit_mcp MCP IOS Calls
* \defgroup coreinit_mcp MCP
* \ingroup coreinit
* @{
*/

View File

@ -31,30 +31,50 @@ nn::Result GetAssignedAddress__Q2_2nn2acFPUl(uint32_t *ip);
} // extern "C"
} // namespace detail
/**
* Initialise the nn_ac library.
*/
static inline nn::Result
Initialize()
{
return detail::Initialize__Q2_2nn2acFv();
}
/**
* Finalise the nn_ac library.
*/
static inline void
Finalize()
{
return detail::Finalize__Q2_2nn2acFv();
}
/**
* Get the default connection configuration id.
*/
static inline nn::Result
GetStartupId(ConfigIdNum *id)
{
return detail::GetStartupId__Q2_2nn2acFPQ3_2nn2ac11ConfigIdNum(id);
}
/**
* Connect to configuration id.
*/
static inline nn::Result
Connect(ConfigIdNum id)
{
return detail::Connect__Q2_2nn2acFQ3_2nn2ac11ConfigIdNum(id);
}
/**
* Get the IP address of the current connection.
*/
static inline nn::Result
GetAssignedAddress(uint32_t *ip)
{