1
0
mirror of https://gitlab.os-k.eu/os-k-team/os-k.git synced 2023-08-25 14:03:10 +02:00
os-k/kaleid/include/kaleid.h

34 lines
1.0 KiB
C
Raw Normal View History

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
//------------------------------------------//
// Include all Kaleid headers //
2019-01-01 13:09:57 +01:00
//------------------------------------------//
#ifndef _KALBASE_H
#include <kalbase.h>
2019-01-01 13:09:57 +01:00
#endif
#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-02-06 14:07:38 +01:00
2019-01-01 13:09:57 +01:00
//------------------------------------------//
#endif