hyperion.ng/include/utils/global_defines.h
2024-06-01 07:48:47 +02:00

12 lines
238 B
C++

#pragma once
#include <cstdint>
#include <limits>
#include <QList>
#define QSTRING_CSTR(str) str.toUtf8().constData()
typedef QList< int > QIntList;
constexpr uint32_t UINT8_MAX_SQUARED = static_cast<uint32_t>(UINT8_MAX) * UINT8_MAX;