/usr/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-mime.h is in libgnomevfs2-dev 1:2.24.4-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | /*
 * Copyright (C) 1997-2001 Free Software Foundation
 * Copyright (C) 2000, 2001 Eazel, Inc.
 * All rights reserved.
 *
 * This file is part of the Gnome Library.
 *
 * The Gnome Library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * The Gnome Library 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with the Gnome Library; see the file COPYING.LIB.  If not,
 * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */
#ifndef GNOME_VFS_MIME_H
#define GNOME_VFS_MIME_H
#include <sys/stat.h>
#include <libgnomevfs/gnome-vfs-uri.h>
G_BEGIN_DECLS
struct stat;
#ifndef GNOME_VFS_DISABLE_DEPRECATED
void 	     gnome_vfs_mime_shutdown 				(void);
#endif
#ifndef GNOME_VFS_DISABLE_DEPRECATED
const char  *gnome_vfs_mime_type_from_name			(const char        *filename);
#endif
const char  *gnome_vfs_mime_type_from_name_or_default	        (const char        *filename,
								 const char        *defaultv);
const char  *gnome_vfs_get_mime_type_common			(GnomeVFSURI       *uri);
/* FIXME: This function should be named more clearly, maybe
   to show that it gets the mime type only using the uri information. */
const char  *gnome_vfs_get_mime_type_from_uri			(GnomeVFSURI       *uri);
 
#ifndef GNOME_VFS_DISABLE_DEPRECATED
const char  *gnome_vfs_get_mime_type_from_file_data		(GnomeVFSURI       *uri);
#endif
const char * gnome_vfs_get_file_mime_type_fast      (const char        *path,
						     const struct stat *optional_stat_info);
const char  *gnome_vfs_get_file_mime_type           (const char        *path,
						     const struct stat *optional_stat_info,
						     gboolean           suffix_only);
gboolean     gnome_vfs_mime_type_is_supertype       (const char        *mime_type);
char	    *gnome_vfs_get_supertype_from_mime_type (const char        *mime_type);
void         gnome_vfs_mime_info_cache_reload (const char *dir);
void         gnome_vfs_mime_reload            (void);
G_END_DECLS
#endif
 |