mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
582 B
26 lines
582 B
/* File import from libegg to gnumeric by import-egg. Do not edit. */
|
|
|
|
|
|
#ifndef __EGG_RECENT_UTIL__
|
|
#define __EGG_RECENT_UTIL__
|
|
|
|
#include <gtk/gtk.h>
|
|
#ifndef USE_STABLE_LIBGNOMEUI
|
|
#include <libgnomeui/gnome-icon-theme.h>
|
|
#endif
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
gchar * egg_recent_util_escape_underlines (const gchar *uri);
|
|
gchar * egg_recent_util_get_unique_id (void);
|
|
#ifndef USE_STABLE_LIBGNOMEUI
|
|
GdkPixbuf * egg_recent_util_get_icon (GnomeIconTheme *theme,
|
|
const gchar *uri,
|
|
const gchar *mime_type,
|
|
int size);
|
|
#endif
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __EGG_RECENT_UTIL__ */
|