mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12096 57a11ea4-9604-0410-9ed3-97b8803252fd
55 lines
2.0 KiB
C
55 lines
2.0 KiB
C
/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/*
|
|
* gsf-msole-utils.h: various tools for handling MS OLE files
|
|
*
|
|
* Copyright (C) 2002-2004 Jody Goldberg (jody@gnome.org)
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of version 2.1 of the GNU Lesser 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 Lesser 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 GSF_MSOLE_UTILS_H
|
|
#define GSF_MSOLE_UTILS_H
|
|
|
|
#include <gsf/gsf.h>
|
|
#include <gsf/gsf-doc-meta-data.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
GError *gsf_msole_metadata_read (GsfInput *in,
|
|
GsfDocMetaData *accum);
|
|
gboolean gsf_msole_metadata_write (GsfOutput *out,
|
|
GsfDocMetaData const *meta_data,
|
|
gboolean doc_not_component);
|
|
|
|
guint gsf_msole_lid_for_language (char const *lang);
|
|
guint gsf_msole_codepage_to_lid (int codepage);
|
|
int gsf_msole_lid_to_codepage (guint lid);
|
|
gchar *gsf_msole_lid_to_codepage_str (guint lid);
|
|
char const *gsf_msole_language_for_lid (guint lid);
|
|
|
|
int gsf_msole_iconv_win_codepage (void) ;
|
|
GIConv gsf_msole_iconv_open_for_import (int codepage) ;
|
|
GIConv gsf_msole_iconv_open_for_export (void) ;
|
|
|
|
GIConv gsf_msole_iconv_open_codepage_for_import (char const *to, int codepage);
|
|
GIConv gsf_msole_iconv_open_codepages_for_export (int codepage_to, char const *from);
|
|
GIConv gsf_msole_iconv_open_codepage_for_export (int codepage_to);
|
|
|
|
GByteArray *gsf_msole_inflate (GsfInput *input, gsf_off_t offset);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* GSF_MSOLE_UTILS_H */
|