mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
26 lines
389 B
C
26 lines
389 B
C
/**
|
|
* @file switch.h
|
|
* @brief Central Switch header. Includes all others.
|
|
*/
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <switch/types.h>
|
|
#include <switch/result.h>
|
|
#include <switch/svc.h>
|
|
#include <switch/ipc.h>
|
|
#include <switch/heap.h>
|
|
|
|
#include <switch/kernel/tmem.h>
|
|
|
|
#include <switch/services/sm.h>
|
|
#include <switch/services/bsd.h>
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|