From 5c1676dfe6d2f3c837a5e074117b45613fd29a72 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:30:19 +0200 Subject: Adding upstream version 2.10.34. Signed-off-by: Daniel Baumann --- .../html/libgimpbase-gimpdatafiles.html | 178 +++++++++++++++++++++ 1 file changed, 178 insertions(+) create mode 100644 devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html (limited to 'devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html') diff --git a/devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html b/devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html new file mode 100644 index 0000000..0886337 --- /dev/null +++ b/devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html @@ -0,0 +1,178 @@ + + + + +gimpdatafiles: GIMP Base Library Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

gimpdatafiles

+

gimpdatafiles — Functions to handle GIMP data files.

+
+
+

Functions

+
++++ + + + + + + + + + + + + + + +
+void + +(*GimpDatafileLoaderFunc) () +
+gboolean + +gimp_datafiles_check_extension () +
+void + +gimp_datafiles_read_directories () +
+
+
+

Types and Values

+
++++ + + + + +
 GimpDatafileData
+
+
+

Description

+

Functions to handle GIMP data files.

+
+
+

Functions

+
+

GimpDatafileLoaderFunc ()

+
void
+(*GimpDatafileLoaderFunc) (const GimpDatafileData *file_data,
+                           gpointer user_data);
+
+
+
+

gimp_datafiles_check_extension ()

+
gboolean
+gimp_datafiles_check_extension (const gchar *filename,
+                                const gchar *extension);
+

gimp_datafiles_check_extension is deprecated and should not be used in newly-written code.

+
+
+
+

gimp_datafiles_read_directories ()

+
void
+gimp_datafiles_read_directories (const gchar *path_str,
+                                 GFileTest flags,
+                                 GimpDatafileLoaderFunc loader_func,
+                                 gpointer user_data);
+

gimp_datafiles_read_directories is deprecated and should not be used in newly-written code.

+
+
+
+

Types and Values

+
+

GimpDatafileData

+
typedef struct {
+  const gchar *filename;
+  const gchar *dirname;
+  const gchar *basename;
+
+  time_t       atime;
+  time_t       mtime;
+  time_t       ctime;
+} GimpDatafileData;
+
+

This structure is passed to the GimpDatafileLoaderFunc given to +gimp_datafiles_read_directories() for each file encountered in the +data path.

+
+

Members

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

const gchar *filename;

the data file's full path.

 

const gchar *dirname;

the folder the data file is in.

 

const gchar *basename;

the data file's basename.

 

time_t atime;

the last time the file was accessed for reading.

 

time_t mtime;

the last time the file was modified.

 

time_t ctime;

the time the file was created.

 
+
+
+
+
+ + + \ No newline at end of file -- cgit v1.2.3