rabbitizer/tables/templates/rust/abi_enum.tablers.template
2024-01-28 12:16:11 -03:00

20 lines
472 B
Plaintext

/* SPDX-FileCopyrightText: © 2022-2024 Decompollaborate */
/* SPDX-License-Identifier: MIT */
#define HASH #
#define HASH_EXPANSION(x) x
#define SPECIAL_RS_TAG(...) HASH_EXPANSION(HASH)[__VA_ARGS__]
#define RABBITIZER_DEF_ABI(name) name,
SPECIAL_RS_TAG(repr(u32))
SPECIAL_RS_TAG(derive(Debug, Copy, Clone, Hash, PartialEq, Eq))
SPECIAL_RS_TAG(allow(non_camel_case_types))
pub enum Abi {
#include "Abi.inc"
RABBITIZER_DEF_ABI(MAX)
}
#undef RABBITIZER_DEF_ABI