//----------------------------------------------------------------------------// // GNU GPL OS/K // // // // Authors: spectral` // // NeoX // // // // Desc: Kaleid API main include file // //----------------------------------------------------------------------------// #ifndef _KALEID_H #define _KALEID_H //------------------------------------------// // Building for OS/K // //------------------------------------------// #if !defined(_OSK_SOURCE) # if defined(_KALEID_KERNEL) || defined(_KALEID_SYSTEM) # define _OSK_SOURCE 1 # endif #endif //------------------------------------------// // Include common part of API // //------------------------------------------// #ifndef _KALDEFS_H #include #endif #ifndef _KALTYPES_H #include #endif #ifndef _KALASSRT_H #include #endif #if defined(_KALMASK_NEEDED) && !defined(_KALMASK_H) #include #endif #ifndef _KALCRT_H #include #endif //------------------------------------------// // End of // //------------------------------------------// #endif