// 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 HEADERS_FOUNDATION_H #define HEADERS_FOUNDATION_H #include #include #include #include #define KT_TEST_VERSION_BCD (0x0001) #define KT_TEST_VERSION "v0.0.1" #define KT_TEST_SUCCESS (kErrorSuccess) #define KT_TEST_FAILURE (kErrorSuccess + 1) #ifndef __KT_TEST_MAIN #define __KT_TEST_MAIN WinMain #endif #define KT_TEST_MAIN __KT_TEST_MAIN #endif