// SPDX-License-Identifier: Apache-2.0 // Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org) // Licensed under the Apache License, Version 2.0 (see LICENSE file) // Official repository: https://github.com/ne-foss-org/nekernel #ifndef LAUNCHKIT_FOUNDATION_H #define LAUNCHKIT_FOUNDATION_H #include #include /// @author Amlal El Mahrouss /// @brief NeKernel Launch Kit - launch programs from it. #define NELAUNCH_INFO(MSG) PrintOut(nullptr, "INFO: [LAUNCH] %s\n", MSG) #define NELAUNCH_WARN(MSG) PrintOut(nullptr, "WARN: [LAUNCH] %s\n", MSG) namespace Launch { using AnyRef = CF::CFRef; using StatusRef = CF::CFRef; } // namespace Launch #endif