34 lines
1.0 KiB
C
34 lines
1.0 KiB
C
//----------------------------------------------------------------------------//
|
|
// GNU GPL OS/K //
|
|
// //
|
|
// Authors: spectral` //
|
|
// NeoX //
|
|
// //
|
|
// Desc: Kaleid API main include file //
|
|
//----------------------------------------------------------------------------//
|
|
|
|
#ifndef _KALEID_H
|
|
#define _KALEID_H
|
|
|
|
//------------------------------------------//
|
|
// Include all Kaleid headers //
|
|
//------------------------------------------//
|
|
|
|
#ifndef _KALBASE_H
|
|
#include <kalbase.h>
|
|
#endif
|
|
|
|
#ifndef _KALEXT_H
|
|
#include <kalext.h>
|
|
#endif
|
|
|
|
#ifdef _KALEID_KERNEL
|
|
#ifndef _KALKERN_H
|
|
#include <kalkern.h>
|
|
#endif
|
|
#endif
|
|
|
|
//------------------------------------------//
|
|
|
|
#endif
|