mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
20 lines
442 B
C++
20 lines
442 B
C++
#ifndef GEODE_CORE_META_META_HPP
|
|
#define GEODE_CORE_META_META_HPP
|
|
|
|
#include "callconv.hpp"
|
|
#include "common.hpp"
|
|
#include "function.hpp"
|
|
#include "preproc.hpp"
|
|
#include "defaultconv.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"
|
|
#endif
|
|
|
|
#endif /* GEODE_CORE_META_META_HPP */
|