mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
f4d63759de
Adds missing API functions to PipelineC that will be needed by the GraphQL API: * Kinds enumeration * Get Rank and parent of a Kind * Enumerate and inspect Ranks * Get a Step's parent Included are some docstring fixes
15 lines
424 B
C
15 lines
424 B
C
#pragma once
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
typedef struct rp_manager rp_manager;
|
|
typedef struct rp_kind rp_kind;
|
|
typedef struct rp_rank rp_rank;
|
|
typedef struct rp_step rp_step;
|
|
typedef struct rp_container rp_container;
|
|
typedef struct rp_container_identifier rp_container_identifier;
|
|
typedef struct rp_target rp_target;
|
|
typedef struct rp_targets_list rp_targets_list;
|