Updated wiki URLs.

This commit is contained in:
yellows8 2018-10-11 21:44:51 -04:00
parent 42d3c32b37
commit c1b4b95bd7
4 changed files with 7 additions and 7 deletions

View File

@ -4,4 +4,4 @@ Based on libctru.
[![Build status](https://doozer.io/badge/switchbrew/libnx/buildstatus/master)](https://doozer.io/switchbrew/libnx) [![Build status](https://doozer.io/badge/switchbrew/libnx/buildstatus/master)](https://doozer.io/switchbrew/libnx)
# Install instructions # Install instructions
See [Switchbrew](http://switchbrew.org/index.php?title=Setting_up_Development_Environment). See [Switchbrew](https://switchbrew.org/wiki/Setting_up_Development_Environment).

View File

@ -172,7 +172,7 @@ Result svcSetMemoryPermission(void* addr, u64 size, u32 perm);
* @param[in] val0 State0 * @param[in] val0 State0
* @param[in] val1 State1 * @param[in] val1 State1
* @return Result code. * @return Result code.
* @remark See <a href="http://switchbrew.org/index.php?title=SVC#svcSetMemoryAttribute">switchbrew.org Wiki</a> for more details. * @remark See <a href="https://switchbrew.org/wiki/SVC#svcSetMemoryAttribute">switchbrew.org Wiki</a> for more details.
* @note Syscall number 0x02. * @note Syscall number 0x02.
*/ */
Result svcSetMemoryAttribute(void* addr, u64 size, u32 val0, u32 val1); Result svcSetMemoryAttribute(void* addr, u64 size, u32 val0, u32 val1);
@ -517,7 +517,7 @@ Result svcOutputDebugString(const char *str, u64 size);
* @param[in] handle Handle of the object to retrieve information from, or \ref INVALID_HANDLE to retrieve information about the system. * @param[in] handle Handle of the object to retrieve information from, or \ref INVALID_HANDLE to retrieve information about the system.
* @param[in] id1 Second ID of the property to retrieve. * @param[in] id1 Second ID of the property to retrieve.
* @return Result code. * @return Result code.
* @remark The full list of property IDs can be found on the <a href="http://switchbrew.org/index.php?title=SVC#svcGetInfo">switchbrew.org wiki</a>. * @remark The full list of property IDs can be found on the <a href="https://switchbrew.org/wiki/SVC#svcGetInfo">switchbrew.org wiki</a>.
* @note Syscall number 0x29. * @note Syscall number 0x29.
*/ */
Result svcGetInfo(u64* out, u64 id0, Handle handle, u64 id1); Result svcGetInfo(u64* out, u64 id0, Handle handle, u64 id1);
@ -956,7 +956,7 @@ Result svcGetDebugThreadParam(u64* out_64, u32* out_32, Handle debug, u64 thread
* @param[in] handle Handle of the object to retrieve information from, or \ref INVALID_HANDLE to retrieve information about the system. * @param[in] handle Handle of the object to retrieve information from, or \ref INVALID_HANDLE to retrieve information about the system.
* @param[in] id1 Second ID of the property to retrieve. * @param[in] id1 Second ID of the property to retrieve.
* @return Result code. * @return Result code.
* @remark The full list of property IDs can be found on the <a href="http://switchbrew.org/index.php?title=SVC#svcGetSystemInfo">switchbrew.org wiki</a>. * @remark The full list of property IDs can be found on the <a href="https://switchbrew.org/wiki/SVC#svcGetSystemInfo">switchbrew.org wiki</a>.
* @note Syscall number 0x6F. * @note Syscall number 0x6F.
* @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available. * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available.
*/ */

View File

@ -75,7 +75,7 @@ Result setMakeLanguageCode(s32 Language, u64 *LanguageCode);
/// Gets the current system LanguageCode. /// Gets the current system LanguageCode.
/// Normally this should be used instead of \ref setGetLanguageCode. /// Normally this should be used instead of \ref setGetLanguageCode.
/// LanguageCode is a string, see here: http://switchbrew.org/index.php?title=Settings_services#LanguageCode /// LanguageCode is a string, see here: https://switchbrew.org/wiki/Settings_services#LanguageCode
Result setGetSystemLanguage(u64 *LanguageCode); Result setGetSystemLanguage(u64 *LanguageCode);
/// Gets the current LanguageCode, \ref setGetSystemLanguage should be used instead normally. /// Gets the current LanguageCode, \ref setGetSystemLanguage should be used instead normally.
@ -131,4 +131,4 @@ Result setsysGetFlag(SetSysFlag flag, bool *out);
* @param flag The specified settings flag. * @param flag The specified settings flag.
* @param enable To enable/disable the flag. * @param enable To enable/disable the flag.
*/ */
Result setsysSetFlag(SetSysFlag flag, bool enable); Result setsysSetFlag(SetSysFlag flag, bool enable);

View File

@ -9,7 +9,7 @@
#include "../services/sm.h" #include "../services/sm.h"
#include "../kernel/event.h" #include "../kernel/event.h"
/// usb:ds Switch-as-device<>host USB comms, see also here: http://switchbrew.org/index.php?title=USB_services /// usb:ds Switch-as-device<>host USB comms, see also here: https://switchbrew.org/wiki/USB_services
/// Names starting with "libusb" were changed to "usb" to avoid collision with actual libusb if it's ever used. /// Names starting with "libusb" were changed to "usb" to avoid collision with actual libusb if it's ever used.