/* Copyright (C) 2017-2020, Dirk Krause SPDX-License-Identifier: BSD-3-Clause */ /* WARNING: This file was generated by the dkct program (see http://dktools.sourceforge.net/ for details). Changes you make here will be lost if dkct is run again! You should modify the original source and run dkct on it. Original source: bmpp.ctr */ /** @file bmpp.h Header file for the bmpp module. */ #ifndef BMPP_H_INCLUDED /** Avoid multiple inclusions. */ #define BMPP_H_INCLUDED 1 #line 9 "bmpp.ctr" #ifndef DK4CONF_H_INCLUDED #include "dk4conf.h" #endif #ifndef DK4TYPES_H_INCLUDED #include "dk4types.h" #endif #ifndef DK4PAPER_H_INCLUDED #include "dk4paper.h" #endif #ifndef DK4FILED_H_INCLUDED #include "dk4filed.h" #endif #ifndef DK4DIR_H_INCLUDED #include "dk4dir.h" #endif #ifndef DK4CS_H_INCLUDED #include "dk4cs.h" #endif #ifndef DK4APP_H_INCLUDED #include "dk4app.h" #endif #ifndef DK4DIRA_H_INCLUDED #include "dk4dira.h" #endif #ifndef DK4GRAA_H_INCLUDED #include "dk4graa.h" #endif #ifndef DK4GRCO_H_INCLUDED #include "dk4grco.h" #endif #ifndef DK4BIF_H_INCLUDED #include "dk4bif.h" #endif #ifndef DK4BIFAP_H_INCLUDED #include "dk4bifap.h" #endif /** Job structure. */ typedef struct { dkChar exbuf[DK4_MAX_PATH]; /**< File name expansion. */ dkChar dtbuf[DK4_MAX_PATH]; /**< Dir traversal. */ dkChar onbuf[DK4_MAX_PATH]; /**< Output file name. */ dk4_gra_conf_t grco; /**< Graphics configuration. */ dk4_app_t *app; /**< Application structure. */ const dkChar * const *msg; /**< Localized texts. */ size_t sz_msg; /**< Number of elements in msg. */ int use_prefs; /**< Flag: Use preferences. */ int make_mode; /**< Flag: Run in make mode. */ int exval; /**< Exit status code. */ } bmpp_job_t; /* vim: set ai sw=4 ts=4 : */ #endif