mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-05 03:24:17 +01:00
Update some doxygen related headers.
This commit is contained in:
parent
2420cf70d5
commit
26af965373
@ -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)
|
||||
|
@ -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.
|
||||
|
@ -2,7 +2,7 @@
|
||||
#include <wut.h>
|
||||
|
||||
/**
|
||||
* \defgroup coreinit_core Core Identification
|
||||
* \defgroup coreinit_core Core
|
||||
* \ingroup coreinit
|
||||
* @{
|
||||
*/
|
||||
|
@ -2,7 +2,7 @@
|
||||
#include <wut.h>
|
||||
|
||||
/**
|
||||
* \defgroup coreinit_ios Core Identification
|
||||
* \defgroup coreinit_ios IOS
|
||||
* \ingroup coreinit
|
||||
* @{
|
||||
*/
|
||||
|
@ -2,7 +2,7 @@
|
||||
#include <wut.h>
|
||||
|
||||
/**
|
||||
* \defgroup coreinit_mcp MCP IOS Calls
|
||||
* \defgroup coreinit_mcp MCP
|
||||
* \ingroup coreinit
|
||||
* @{
|
||||
*/
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user