summaryrefslogtreecommitdiffhomepage
path: root/public/frameworks/KernelTest.fwrk/headers/Foundation.h
blob: 2b9e848b5ae717fef63fbc5f5d4b1f343704c743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// 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 <libSystem/SystemKit/Err.h>
#include <libSystem/SystemKit/System.h>

#include <CoreFoundation.fwrk/headers/Object.h>
#include <CoreFoundation.fwrk/headers/String.h>

#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