2019-01-21 15:00:04 +01:00
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
// GNU GPL OS/K //
|
|
|
|
// //
|
|
|
|
// Authors: spectral` //
|
|
|
|
// NeoX //
|
|
|
|
// //
|
|
|
|
// Desc: Kaleid API base minimal include file //
|
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
|
|
|
|
#ifndef _KALBASE_H
|
|
|
|
#define _KALBASE_H
|
|
|
|
|
|
|
|
//------------------------------------------//
|
|
|
|
// Building for OS/K //
|
|
|
|
//------------------------------------------//
|
|
|
|
|
2019-02-06 14:07:38 +01:00
|
|
|
#ifndef _OSK_SOURCE
|
|
|
|
#if defined(_KALEID_KERNEL) || defined(_KALEID_SYSTEM)
|
|
|
|
#define _OSK_SOURCE 1
|
|
|
|
#endif
|
2019-01-21 15:00:04 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(_OSK_SOURCE) && !defined(_KALEID_UNMASKED)
|
|
|
|
#ifndef _KALBASE_MASKS_H
|
|
|
|
#include <base/masks.h>
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//------------------------------------------//
|
|
|
|
// Include common part of API //
|
|
|
|
//------------------------------------------//
|
|
|
|
|
|
|
|
#ifndef _KALBASE_BDEFS_H
|
|
|
|
#include <base/bdefs.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _KALBASE_ERRNO_H
|
|
|
|
#include <base/errno.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _KALBASE_TYPES_H
|
|
|
|
#include <base/types.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _KALBASE_LIMITS_H
|
|
|
|
#include <base/limits.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _KALBASE_ASSERT_H
|
|
|
|
#include <base/assert.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _KALBASE_CRTLIB_H
|
|
|
|
#include <base/crtlib.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//------------------------------------------//
|
|
|
|
|
|
|
|
#endif
|