summaryrefslogtreecommitdiff
path: root/support/dktools/bmpp.h
blob: 413689faeace548aba03440df85146cb678c6544 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
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