/* ======================================== Copyright (C) 2025, Amlal El Mahrouss, licensed under the Apache 2.0 license. ======================================== */ #pragma once #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