1 /* spooler.h 2 * 3 * Copyright (C) 2008 Till Kamppeter <till.kamppeter@gmail.com> 4 * Copyright (C) 2008 Lars Karlitski (formerly Uebernickel) <lars@karlitski.net> 5 * 6 * This file is part of foomatic-rip. 7 * 8 * Foomatic-rip is free software; you can redistribute it and/or modify 9 * it under the terms of the GNU General Public License as published by 10 * the Free Software Foundation; either version 2 of the License, or 11 * (at your option) any later version. 12 * 13 * Foomatic-rip is distributed in the hope that it will be useful, but 14 * WITHOUT ANY WARRANTY; without even the implied warranty of 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 16 * General Public License for more details. 17 * 18 * You should have received a copy of the GNU Lesser General Public 19 * License along with this library; if not, write to the 20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 21 * Boston, MA 02111-1307, USA. 22 */ 23 24 #ifndef SPOOLER_H 25 #define SPOOLER_H 26 27 #include "foomaticrip.h" 28 #include "util.h" 29 30 const char *spooler_name(int spooler); 31 void init_cups(list_t *arglist, dstr_t *filelist, jobparams_t *job); 32 void init_direct(list_t *arglist, dstr_t *filelist, jobparams_t *job); 33 34 #endif 35 36