From 3e76a1ed3755cbdf3b186df22a40cbd851f32a93 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 10 Apr 2024 08:51:10 -0400 Subject: Consolidate INIFILE handling across the delivery context * Break delivery_init() into separate populate_* functions --- include/deliverable.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'include/deliverable.h') diff --git a/include/deliverable.h b/include/deliverable.h index 97e7851..d712d08 100644 --- a/include/deliverable.h +++ b/include/deliverable.h @@ -37,6 +37,18 @@ struct Content { * \brief A structure describing a full delivery object */ struct Delivery { + /*! \struct OMC_INI_FP + * \brief Container for INIFILE handles + */ + struct OMC_INI_FP { + struct INIFILE *delivery; + struct INIFILE *cfg; + struct INIFILE *mission; + char *delivery_path; + char *cfg_path; + char *mission_path; + } _omc_ini_fp; + /*! \struct System * \brief System information */ -- cgit