libnx/nx/include/switch.h
plutoo 3926969ebc Minor changes
* Refactored system/*
* Implemented all of tmem
* Introduced virtmem
2017-10-07 15:32:57 +02:00

30 lines
524 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/kernel/mutex.h>
#include <switch/kernel/virtmem.h>
#include <switch/services/sm.h>
#include <switch/services/bsd.h>
#include <switch/services/fatal.h>
#include <switch/services/vi.h>
#ifdef __cplusplus
}
#endif