+ + * Get rid of a number of unnecessary gnome.h includes + + * capplets/keybindings/gnome-keybinding-properties.c: Use + gtk_init() instead of gnome_program_init(). + + * A couple of formatting fixes + svn path=/trunk/; revision=9098
46 lines
1.2 KiB
C
46 lines
1.2 KiB
C
/*
|
|
* Authors: Rodney Dawes <dobey@ximian.com>
|
|
*
|
|
* Copyright 2003-2006 Novell, Inc. (www.novell.com)
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of version 2 of the GNU General Public License
|
|
* as published by the Free Software Foundation
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
|
|
*
|
|
*/
|
|
|
|
#ifndef _GNOME_WP_INFO_H_
|
|
#define _GNOME_WP_INFO_H_
|
|
|
|
#include <glib.h>
|
|
#define GNOME_DESKTOP_USE_UNSTABLE_API
|
|
#include <libgnomeui/gnome-desktop-thumbnail.h>
|
|
|
|
typedef struct _GnomeWPInfo GnomeWPInfo;
|
|
|
|
struct _GnomeWPInfo {
|
|
gchar * uri;
|
|
gchar * thumburi;
|
|
gchar * name;
|
|
gchar * mime_type;
|
|
|
|
goffset size;
|
|
|
|
time_t mtime;
|
|
};
|
|
|
|
GnomeWPInfo * gnome_wp_info_new (const gchar * uri,
|
|
GnomeDesktopThumbnailFactory * thumbs);
|
|
void gnome_wp_info_free (GnomeWPInfo * info);
|
|
|
|
#endif
|
|
|