mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-18 01:05:13 +00:00
20 lines
376 B
C
20 lines
376 B
C
|
/**
|
||
|
* @file svc.h
|
||
|
* @brief Wrappers for kernel syscalls.
|
||
|
* @copyright libnx Authors
|
||
|
*/
|
||
|
#pragma once
|
||
|
|
||
|
extern "C" {
|
||
|
|
||
|
/**
|
||
|
* @brief Outputs debug text, if used during debugging.
|
||
|
* @param[in] str Text to output.
|
||
|
* @param[in] size Size of the text in bytes.
|
||
|
* @return Result code.
|
||
|
* @note Syscall number 0x27.
|
||
|
*/
|
||
|
Result svcOutputDebugString(const char *str, u64 size);
|
||
|
|
||
|
|
||
|
}
|