You've already forked rabbitizer
mirror of
https://github.com/encounter/rabbitizer.git
synced 2026-03-30 11:35:30 -07:00
29 lines
601 B
C
29 lines
601 B
C
/* SPDX-FileCopyrightText: © 2022-2024 Decompollaborate */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef RABBITIZER_OPERAND_TYPE_H
|
|
#define RABBITIZER_OPERAND_TYPE_H
|
|
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "generated/OperandType_enum.h"
|
|
|
|
struct RabbitizerInstruction;
|
|
|
|
typedef size_t (*OperandCallback)(const struct RabbitizerInstruction *self, char *dst, const char *immOverride, size_t immOverrideLength);
|
|
|
|
extern const OperandCallback instrOpercandCallbacks[];
|
|
|
|
#include "generated/OperandType_function_declarations.h"
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|