Callisto Engine
api_status.h
Go to the documentation of this file.
1#pragma once
2#include <cstdint>
3#include <limits>
4
10namespace cl {
15 enum class api_status : int32_t {
16 not_implemented = std::numeric_limits<int32_t>::min(),
17 threading_not_initialized,
18 threading_already_initialized,
19 threading_0_threads_not_allowed,
20 threading_memory_cannot_be_null,
21 threading_scheduler_cannot_be_null,
22 scheduler_not_initialized,
23 scheduler_already_initialized,
24 ok = 0,
25 no_result = 1,
26 };
27}