2009-01-25 Jens Granseuer <jensgr@gmx.net> * configure.in: don't define GNOME_DESKTOP_USE_UNSTABLE_API globally 2009-01-25 Jens Granseuer <jensgr@gmx.net> * Makefile.am: * gnome-wp-info.h: * gnome-wp-item.h: define GNOME_DESKTOP_USE_UNSTABLE_API in Makefile instead of individual headers svn path=/trunk/; revision=9208
45 lines
1.2 KiB
C
45 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>
|
|
#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
|
|
|