mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-17 17:05:09 +00:00
20 lines
No EOL
376 B
C
20 lines
No EOL
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);
|
|
|
|
|
|
} |