universe@22: /* universe@22: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. universe@22: * universe@35: * Copyright 2016 Mike Becker. All rights reserved. universe@22: * universe@22: * Redistribution and use in source and binary forms, with or without universe@22: * modification, are permitted provided that the following conditions are met: universe@22: * universe@22: * 1. Redistributions of source code must retain the above copyright universe@22: * notice, this list of conditions and the following disclaimer. universe@22: * universe@22: * 2. Redistributions in binary form must reproduce the above copyright universe@22: * notice, this list of conditions and the following disclaimer in the universe@22: * documentation and/or other materials provided with the distribution. universe@22: * universe@22: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" universe@22: * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE universe@22: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE universe@22: * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE universe@22: * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR universe@22: * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF universe@22: * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS universe@22: * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN universe@22: * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) universe@22: * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE universe@22: * POSSIBILITY OF SUCH DAMAGE. universe@22: * universe@22: */ universe@22: universe@22: #ifndef C2HTML_H universe@22: #define C2HTML_H universe@22: universe@22: #ifdef __cplusplus universe@22: extern "C" { universe@22: #endif universe@37: universe@37: #define VERSION_MAJOR 2 universe@37: #define VERSION_MINOR 0 universe@39: #define VERSION_DEVELOP 1 /* set this to zero for release version */ universe@22: universe@22: typedef struct { universe@22: char* outfilename; universe@22: char* headerfile; universe@22: char* footerfile; universe@22: char* infilename; olaf@24: int showlinenumbers; universe@39: } Settings; universe@22: universe@22: universe@22: #ifdef __cplusplus universe@22: } universe@22: #endif universe@22: universe@22: #endif /* C2HTML_H */ universe@22: