//----------------------------------------------------------------------------// // GNU GPL OS/K // // // // Authors: spectral` // // NeoX // // // // Desc: Kaleid API base minimal include file // //----------------------------------------------------------------------------// #ifndef _KALBASE_H #define _KALBASE_H //------------------------------------------// // Building for OS/K // //------------------------------------------// #ifndef _OSK_SOURCE #if defined(_KALEID_KERNEL) || defined(_KALEID_SYSTEM) #define _OSK_SOURCE 1 #endif #endif #if !defined(_OSK_SOURCE) && !defined(_KALEID_UNMASKED) #ifndef _KALBASE_MASKS_H #include #endif #endif //------------------------------------------// // Include common part of API // //------------------------------------------// #ifndef _KALBASE_BDEFS_H #include #endif #ifndef _KALBASE_ERRNO_H #include #endif #ifndef _KALBASE_TYPES_H #include #endif #ifndef _KALBASE_LIMITS_H #include #endif #ifndef _KALBASE_ASSERT_H #include #endif #ifndef _KALBASE_CRTLIB_H #include #endif //------------------------------------------// #endif