udapted vi.po
[rhythmbox.git] / lib / rb-cut-and-paste-code.h
blob0a1011231c656ff2437d280649f4f555deef2cab
1 /*
2 * arch-tag: Header file for code cut and pasted from elsewhere
4 * Copyright (C) 2002 Jorn Baayen
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include <gdk-pixbuf/gdk-pixbuf.h>
23 #include <time.h>
25 #ifndef __RB_CUT_AND_PASTE_CODE_H
26 #define __RB_CUT_AND_PASTE_CODE_H
28 G_BEGIN_DECLS
30 char *eel_strdup_strftime (const char *format,
31 struct tm *time_pieces);
33 GdkPixbuf *eel_create_colorized_pixbuf (GdkPixbuf *src,
34 int red_value,
35 int green_value,
36 int blue_value);
38 char * rb_utf_friendly_time (time_t date);
40 #ifdef HAVE_COLLATE_KEY_FILENAME
41 #define rb_utf8_collate_key_for_filename g_utf8_collate_key_for_filename
42 #else
43 gchar* rb_utf8_collate_key_for_filename (const gchar *str, gssize len);
44 #endif
46 char * rb_make_valid_utf8 (const char *name, char substitute);
48 G_END_DECLS
50 #endif /* __RB_CUT_AND_PASTE_CODE_H */