Files
LXC/Common/LXC.h

25 lines
383 B
C++

#pragma once
// MSVC Built in macros for non-MSVC enviroments //
#ifndef _UNLIKELY
#define _UNLIKELY [[unlikely]]
#endif // _UNLIKELY
#ifndef _LIKELY
#define _LIKELY [[likely]]
#endif // _LIKELY
// Standard libraries //
#include <unordered_map>
#include <cstdint>
#include <cstring>
#include <vector>
// LXC util files //
#include <Result.h>
#include <File.h>
#include <IO.h>