00001 /* 00002 * "$Id: path.h,v 1.1 2004/09/17 18:38:01 rleigh Exp $" 00003 * 00004 * libgimpprint path functions header 00005 * 00006 * Copyright 1997-2000 Michael Sweet (mike@easysw.com), 00007 * Robert Krawitz (rlk@alum.mit.edu) and Michael Natterer (mitch@gimp.org) 00008 * Copyright 2002 Roger Leigh (rleigh@debian.org) 00009 * 00010 * This program is free software; you can redistribute it and/or modify it 00011 * under the terms of the GNU General Public License as published by the Free 00012 * Software Foundation; either version 2 of the License, or (at your option) 00013 * any later version. 00014 * 00015 * This program is distributed in the hope that it will be useful, but 00016 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 00017 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00018 * for more details. 00019 * 00020 * You should have received a copy of the GNU General Public License 00021 * along with this program; if not, write to the Free Software 00022 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00023 */ 00024 00030 /* 00031 * This file must include only standard C header files. The core code must 00032 * compile on generic platforms that don't support glib, gimp, gtk, etc. 00033 */ 00034 00035 #ifndef GUTENPRINT_PATH_H 00036 #define GUTENPRINT_PATH_H 00037 00038 #ifdef __cplusplus 00039 extern "C" { 00040 #endif 00041 00042 00043 extern stp_list_t *stp_path_search(stp_list_t *dirlist, 00044 const char *suffix); 00045 00046 extern void stp_path_split(stp_list_t *list, 00047 const char *path); 00048 00049 00050 #ifdef __cplusplus 00051 } 00052 #endif 00053 00054 #endif /* GUTENPRINT_PATH_H */ 00055 /* 00056 * End of "$Id: path.h,v 1.1 2004/09/17 18:38:01 rleigh Exp $". 00057 */