/* Copyright (C) 2012-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: printqda.ctr */ /** @file printqda.h Header file for the printqda module. */ #ifndef PRINTQDA_H_INCLUDED /** Avoid multiple inclusions. */ #define PRINTQDA_H_INCLUDED 1 #line 10 "printqda.ctr" /** Printqda job structure. */ typedef struct { pqd_conf_t cfg; /**< Configuration. */ dk3_app_t *app; /**< Application structure. */ char const * const *lmsg; /**< Localized message texts. */ char const * const *cmsg; /**< Localized messages for config. */ char **up; /**< Uppercase option arguments. */ char **lo; /**< Lowercase option arguments. */ int exval; /**< Exit status code. */ int fadm; /**< Flag: Running as printqda. */ int fcerr; /**< Flag: Connection error occured. */ } pqda_job_t; #endif