mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 07:57:51 -05:00
22 lines
483 B
C++
22 lines
483 B
C++
#ifndef GEODE_CORE_META_META_HPP
|
|
#define GEODE_CORE_META_META_HPP
|
|
|
|
#include "../platform/platform.hpp"
|
|
#include "callconv.hpp"
|
|
#include "common.hpp"
|
|
#include "defaultconv.hpp"
|
|
#include "function.hpp"
|
|
|
|
namespace geode::core::meta {}
|
|
|
|
namespace geode::core::meta::x86 {}
|
|
|
|
#if defined(GEODE_IS_WINDOWS)
|
|
#include "cdecl.hpp"
|
|
#include "membercall.hpp"
|
|
#include "optcall.hpp"
|
|
#include "thiscall.hpp"
|
|
#include "stdcall.hpp"
|
|
#endif
|
|
|
|
#endif /* GEODE_CORE_META_META_HPP */
|