2019-01-01 13:09:57 +01:00
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
// GNU GPL OS/K //
|
|
|
|
// //
|
|
|
|
// Authors: spectral` //
|
|
|
|
// NeoX //
|
|
|
|
// //
|
|
|
|
// Desc: Kaleid API main include file //
|
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
|
|
|
|
#ifndef _KALEID_H
|
|
|
|
#define _KALEID_H
|
|
|
|
|
|
|
|
//------------------------------------------//
|
2019-01-21 11:07:11 +01:00
|
|
|
// Include all Kaleid headers //
|
2019-01-01 13:09:57 +01:00
|
|
|
//------------------------------------------//
|
|
|
|
|
2019-01-21 11:07:11 +01:00
|
|
|
#ifndef _KALBASE_H
|
|
|
|
#include <kalbase.h>
|
2019-01-01 13:09:57 +01:00
|
|
|
#endif
|
|
|
|
|
2019-01-21 11:07:11 +01:00
|
|
|
#ifndef _KALEXT_H
|
|
|
|
#include <kalext.h>
|
2019-01-01 17:11:30 +01:00
|
|
|
#endif
|
|
|
|
|
2019-01-14 14:31:49 +01:00
|
|
|
#ifdef _KALEID_KERNEL
|
|
|
|
#ifndef _KALKERN_H
|
|
|
|
#include <kalkern.h>
|
|
|
|
#endif
|
|
|
|
#endif
|
2019-01-01 13:09:57 +01:00
|
|
|
//------------------------------------------//
|
2019-01-14 14:31:49 +01:00
|
|
|
// End of header //
|
2019-01-01 13:09:57 +01:00
|
|
|
//------------------------------------------//
|
|
|
|
|
|
|
|
#endif
|