/* Contains definitions used for handling of the individual printer settings file */
/* Created 28.12.2002 T. Milius
   Changed 05.04.2002 T. Milius */
/* (c) Copyright 2002, 2003 by Thomas Milius Stade, Germany
   Source must not be altered without agreement of the owner.
   The owner of the source is allowed to use this code inside programs without
   publishing the code of this programs. These programs may be commercial.
   Other developers can use this source freely inside own software if the source
   code of this programs is made public to same conditions like valid to this code
   and no commercial profit is taken from the programs based on this code

   Code or parts of it are not allowed to be used within GPL code or
   similar licenses which are "infecting" other code and trying to "supersede"
   other licenses. */
/* ANSI-C */

#ifndef settings_h
#define settings_h

/* !!!!!!!!!! libraries !!!!!!!!!! */

/* !!!!!!!!!! definitions !!!!!!!!!! */
/* Calibration file sequences */
#define FILE_SECTION_INDETERMINED 0
#define FILE_SECTION_HEAD_ADJUSTMENT 1
#define FILE_SECTION_COLOUR_CALIBRATION 2
#define FILE_SECTION_PAGE_SEQUENCE 3

#define FILE_COMMENT "#"
#define FILE_HEAD_ADJUSTMENT_START "head_adjustment_start"
#define FILE_HEAD_ADJUSTMENT_END "head_adjustment_end"
#define FILE_COLOUR_CALIBRATION_START "printable_colours_start"
#define FILE_COLOUR_CALIBRATION_END "printable_colours_end"
#define FILE_PAGE_SEQUENCE_START "page_sequence_start"
#define FILE_PAGE_SEQUENCE_END "page_sequence_end"

#define FILE_PAGE_SEQUENCE_VALUE "V:"
#define FILE_PAGE_SEQUENCE_SEQUENCE "S:"

/* !!!!!!!!!! data structures !!!!!!!!!! */

/* !!!!!!!!!! support functions !!!!!!!!!! */

/* !!!!!!!!!! functions !!!!!!!!!! */

#endif
