summaryrefslogtreecommitdiffhomepage
path: root/public/frameworks/KernelTest.fwrk/headers/Foundation.h
blob: 97f82e59ab0be92172a34605f9668147f038edfa (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
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/nekernel-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