mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
40 lines
824 B
C
40 lines
824 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/arm.h>
|
|
#include <switch/ipc.h>
|
|
|
|
#include <switch/kernel/tmem.h>
|
|
#include <switch/kernel/shmem.h>
|
|
#include <switch/kernel/mutex.h>
|
|
#include <switch/kernel/thread.h>
|
|
#include <switch/kernel/virtmem.h>
|
|
#include <switch/kernel/version.h>
|
|
|
|
#include <switch/services/sm.h>
|
|
#include <switch/services/fs.h>
|
|
#include <switch/services/applet.h>
|
|
#include <switch/services/binder.h>
|
|
#include <switch/services/bsd.h>
|
|
#include <switch/services/fatal.h>
|
|
#include <switch/services/usb.h>
|
|
#include <switch/services/hid.h>
|
|
#include <switch/services/vi.h>
|
|
|
|
#include <switch/gfx/gfx.h>
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|