diff options
| author | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2009-05-10 14:21:20 +0200 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2009-05-10 14:21:20 +0200 |
| commit | 8a722d04938583dc3620de05fd52f0baecce9fbb (patch) | |
| tree | dfee5472e5a88c450b8cc4abc71cc2a68d635e67 /src/generators.h | |
| parent | 3bca7e95f2b4ef351b89495afcb6d6230b5f7cd0 (diff) | |
| download | cataract-8a722d04938583dc3620de05fd52f0baecce9fbb.tar.xz | |
Consolidate data types
Diffstat (limited to 'src/generators.h')
| -rw-r--r-- | src/generators.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/generators.h b/src/generators.h index 31636f0..3aa9cc2 100644 --- a/src/generators.h +++ b/src/generators.h @@ -15,6 +15,8 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ +#include <glib.h> + #include "setup.h" #include "items.h" @@ -27,7 +29,7 @@ gboolean generate_image (TGallerySetup *setup, TAlbum *items, TIndexItem *item, unsigned int item_index, - const char *dst_dir, + const gchar *dst_dir, gboolean update_when_necessary); /* @@ -39,8 +41,8 @@ gboolean generate_image (TGallerySetup *setup, * */ gboolean write_html_album (TGallerySetup *setup, - const char *template_src, - const char *dst, + const gchar *template_src, + const gchar *dst, TAlbum *items); /* @@ -54,8 +56,8 @@ gboolean write_html_album (TGallerySetup *setup, * */ gboolean write_html_image (TGallerySetup *setup, - const char *template_src, - const char *original_img, - const char *dst, + const gchar *template_src, + const gchar *original_img, + const gchar *dst, TIndexItem *item, TAlbum *parent_items); |
