mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-28 15:17:59 +00:00
17 lines
323 B
Plaintext
17 lines
323 B
Plaintext
/* SPDX-FileCopyrightText: © 2023 Decompollaborate */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
from __future__ import annotations
|
|
|
|
from .Enum import Enum
|
|
|
|
#define RABBITIZER_DEF_ABI(name) name: Enum
|
|
|
|
class Abi:
|
|
#include "Abi.inc"
|
|
|
|
@staticmethod
|
|
def fromStr(name: str | None) -> Enum: ...
|
|
|
|
#undef RAB_DEF_ACCESSTYPE
|