Files

29 lines
601 B
C
Raw Permalink Normal View History

2024-01-28 12:16:11 -03:00
/* SPDX-FileCopyrightText: © 2022-2024 Decompollaborate */
/* SPDX-License-Identifier: MIT */
2022-09-17 17:23:10 -03:00
#ifndef RABBITIZER_OPERAND_TYPE_H
#define RABBITIZER_OPERAND_TYPE_H
#pragma once
2022-10-13 18:37:27 -03:00
#include <stddef.h>
2022-10-04 08:31:02 -03:00
#ifdef __cplusplus
extern "C" {
#endif
2023-05-02 19:01:54 -04:00
#include "generated/OperandType_enum.h"
2022-10-04 08:31:02 -03:00
2022-10-13 18:32:24 -03:00
struct RabbitizerInstruction;
typedef size_t (*OperandCallback)(const struct RabbitizerInstruction *self, char *dst, const char *immOverride, size_t immOverrideLength);
extern const OperandCallback instrOpercandCallbacks[];
2023-05-02 19:01:54 -04:00
#include "generated/OperandType_function_declarations.h"
2022-10-13 18:32:24 -03:00
2022-10-04 08:31:02 -03:00
#ifdef __cplusplus
}
#endif
#endif