app/Makefile.am removed.
2001-05-10 Michael Natterer <mitch@gimp.org> * app/Makefile.am * app/asupsample.[ch]: removed. * app/core/Makefile.am * app/core/core-types.h * app/tools/Makefile.am * app/tools/tools-types.h: new files. * app/tools/gimptoolinfo.[ch]: removed. * app/core/gimptoolinfo.[ch]: added here. * libgimp/Makefile.am * libgimp/gimp.h * libgimp/gimpadaptivesupersample.[ch] * libgimp/gimpbilinear.[ch]: removed here... * libgimpcolor/Makefile.am * libgimpcolor/gimpcolortypes.h * libgimpcolor/gimpadaptivesupersample.[ch] * libgimpcolor/gimpbilinear.[ch]: ..and added here. * tools/pdbgen/app.pl * tools/pdbgen/pdb/paths.pdb * app/*.c: changed tons of #include's
This commit is contained in:

committed by
Michael Natterer

parent
c69de20f03
commit
d1022c34b6
@ -19,8 +19,8 @@
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef __DATAFILES_H__
|
||||
#define __DATAFILES_H__
|
||||
#ifndef __GIMP_DATAFILES_H__
|
||||
#define __GIMP_DATAFILES_H__
|
||||
|
||||
#include <time.h>
|
||||
|
||||
@ -32,22 +32,22 @@ typedef enum
|
||||
} GimpDataFileFlags;
|
||||
|
||||
|
||||
gboolean datafiles_check_extension (const gchar *filename,
|
||||
const gchar *extension);
|
||||
gboolean gimp_datafiles_check_extension (const gchar *filename,
|
||||
const gchar *extension);
|
||||
|
||||
void datafiles_read_directories (const gchar *path_str,
|
||||
GimpDataFileFlags flags,
|
||||
GimpDataFileLoaderFunc loader_func,
|
||||
gpointer loader_data);
|
||||
void gimp_datafiles_read_directories (const gchar *path_str,
|
||||
GimpDataFileFlags flags,
|
||||
GimpDataFileLoaderFunc loader_func,
|
||||
gpointer loader_data);
|
||||
|
||||
/* Return the current datafiles access, modification
|
||||
* or change time. The current datafile is the one for
|
||||
* which the "DataFileLoaderFunc" function has been called
|
||||
* on.
|
||||
*/
|
||||
time_t datafile_atime (void);
|
||||
time_t datafile_mtime (void);
|
||||
time_t datafile_ctime (void);
|
||||
time_t gimp_datafile_atime (void);
|
||||
time_t gimp_datafile_mtime (void);
|
||||
time_t gimp_datafile_ctime (void);
|
||||
|
||||
|
||||
#endif /* __DATAFILES_H__ */
|
||||
#endif /* __GIMP_DATAFILES_H__ */
|
||||
|
Reference in New Issue
Block a user