mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-28 06:19:43 +00:00
26 lines
468 B
C
26 lines
468 B
C
/* SPDX-FileCopyrightText: © 2022 Decompollaborate */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef RABBITIZER_LO_PAIRING_INFO_H
|
|
#define RABBITIZER_LO_PAIRING_INFO_H
|
|
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "common/Utils.h"
|
|
|
|
|
|
typedef struct RabbitizerLoPairingInfo {
|
|
bool shouldProcess;
|
|
int instrOffset;
|
|
bool isGpRel;
|
|
bool isGpLoad;
|
|
} RabbitizerLoPairingInfo;
|
|
|
|
|
|
NON_NULL(1)
|
|
void RabbitizerLoPairingInfo_Init(RabbitizerLoPairingInfo *self);
|
|
|
|
|
|
#endif
|