home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / gutenprint / gutenprint-module.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-03-15  |  1.9 KB  |  68 lines

  1. /*        -*- Mode: C -*-
  2.  *  $Id: gutenprint-module.h,v 1.1 2004/09/17 18:38:01 rleigh Exp $
  3.  *
  4.  *   Gimp-Print module header file
  5.  *
  6.  *   Copyright 1997-2002 Michael Sweet (mike@easysw.com) and
  7.  *      Robert Krawitz (rlk@alum.mit.edu)
  8.  *
  9.  *   This program is free software; you can redistribute it and/or modify it
  10.  *   under the terms of the GNU General Public License as published by the Free
  11.  *   Software Foundation; either version 2 of the License, or (at your option)
  12.  *   any later version.
  13.  *
  14.  *   This program is distributed in the hope that it will be useful, but
  15.  *   WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  16.  *   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  17.  *   for more details.
  18.  *
  19.  *   You should have received a copy of the GNU General Public License
  20.  *   along with this program; if not, write to the Free Software
  21.  *   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22.  *
  23.  * Revision History:
  24.  *
  25.  *   See ChangeLog
  26.  */
  27.  
  28. /**
  29.  * @file gutenprint/gutenprint-module.h
  30.  * @brief Gutenprint module header.
  31.  * This header includes all of the public headers used by modules.
  32.  */
  33.  
  34. /*
  35.  * This file must include only standard C header files.  The core code must
  36.  * compile on generic platforms that don't support glib, gimp, gtk, etc.
  37.  */
  38.  
  39. #ifndef GUTENPRINT_GUTENPRINT_MODULE_H
  40. #define GUTENPRINT_GUTENPRINT_MODULE_H
  41.  
  42. #ifdef __cplusplus
  43. extern "C" {
  44. #endif
  45.  
  46. #define STP_MODULE 1
  47.  
  48. #include <gutenprint/gutenprint.h>
  49.  
  50. #include <gutenprint/bit-ops.h>
  51. #include <gutenprint/channel.h>
  52. #include <gutenprint/color.h>
  53. #include <gutenprint/dither.h>
  54. #include <gutenprint/list.h>
  55. #include <gutenprint/module.h>
  56. #include <gutenprint/path.h>
  57. #include <gutenprint/weave.h>
  58. #include <gutenprint/xml.h>
  59.  
  60. #ifdef __cplusplus
  61.   }
  62. #endif
  63.  
  64. #endif /* GUTENPRINT_MODULE_H */
  65. /*
  66.  * End of $Id: gutenprint-module.h,v 1.1 2004/09/17 18:38:01 rleigh Exp $
  67.  */
  68.