summaryrefslogtreecommitdiff
path: root/support/dktools/printqda.h
blob: 760e5905500f725fdecd53c8307ce7bde39c4b86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
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