Files
gnucash/lib/goffice-0.0.4/goffice/utils/go-file.h
Joshua Sled 94e9fe5e6f Fold branches/goffice-update/ back into trunk/.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12096 57a11ea4-9604-0410-9ed3-97b8803252fd
2005-12-04 21:27:17 +00:00

50 lines
1.6 KiB
C

/*
* go-file.h :
*
* Copyright (C) 2004 Morten Welinder (terra@gnome.org)
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA
*/
#ifndef GO_FILE_H
#define GO_FILE_H
#include <glib.h>
#include <gsf/gsf.h>
G_BEGIN_DECLS
char *go_filename_from_uri (const char *uri);
char *go_filename_to_uri (const char *filename);
char *go_shell_arg_to_uri (const char *arg);
char *go_basename_from_uri (const char *uri);
char *go_dirname_from_uri (const char *uri, gboolean brief);
gchar **go_shell_argv_to_glib_encoding (gint argc, gchar const **argv);
GsfInput *go_file_open (char const *uri, GError **err);
GsfOutput *go_file_create (char const *uri, GError **err);
GSList *go_file_split_urls (char const *data);
gchar *go_url_decode (gchar const *text);
gchar *go_url_encode (gchar const *text);
GError *go_url_show (gchar const *url);
gboolean go_url_check_extension (gchar const *uri,
gchar const *std_ext,
gchar **new_uri);
gchar *go_get_mime_type (gchar const *uri);
G_END_DECLS
#endif /* GO_FILE_H */