mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Remove obsoleted files.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15638 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
49501c2dbb
commit
43277fef39
File diff suppressed because it is too large
Load Diff
@ -1,64 +0,0 @@
|
||||
/********************************************************************\
|
||||
* io-gncbin.h -- read (old X-Accountant format) binary datafile *
|
||||
* This program is free software; you can redistribute it and/or *
|
||||
* modify it under the terms of the GNU General Public License as *
|
||||
* published by the Free Software Foundation; either version 2 of *
|
||||
* the License, or (at your option) any later version. *
|
||||
* *
|
||||
* 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, contact: *
|
||||
* *
|
||||
* Free Software Foundation Voice: +1-617-542-5942 *
|
||||
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
|
||||
* Boston, MA 02110-1301, USA gnu@gnu.org *
|
||||
* *
|
||||
* Author: Rob Clark *
|
||||
* Internet: rclark@cs.hmc.edu *
|
||||
* Address: 609 8th Street *
|
||||
* Huntington Beach, CA 92648-4632 *
|
||||
\********************************************************************/
|
||||
|
||||
#ifndef IO_GNCBIN_H
|
||||
#define IO_GNCBIN_H
|
||||
|
||||
#include "qof.h"
|
||||
|
||||
/* @file io-gncbin.h
|
||||
* @brief read (old X-Accountant format) binary datafile
|
||||
* @author Copyright (C) 1997 Robin D. Clark
|
||||
* @author Copyright (C) 1998, 1999 Linas Vepstas <linas@linas.org>
|
||||
|
||||
@note These routines should not be used directly for file IO. They
|
||||
are not inherently safe against file-locking errors. For direct
|
||||
file IO, the QofBook's higher level functions should be used.
|
||||
*/
|
||||
/** Load the financial data represented by the book's file_path
|
||||
into the indicated book.*/
|
||||
void qof_session_load_from_binfile(QofBook *, const char * filepath);
|
||||
|
||||
/** Error handler.
|
||||
|
||||
\return an error code for any error
|
||||
detected that occured during reading or writing.
|
||||
|
||||
The error code will be reset after the call.
|
||||
|
||||
The current implementation can be
|
||||
thought of as a "stack of depth one", and this routine as a "pop".
|
||||
*/
|
||||
QofBackendError gnc_get_binfile_io_error(void);
|
||||
|
||||
/** \brief Attempt to identify the binary format.
|
||||
|
||||
Instead of assuming that anything not v1 or v2 XML is the gnc
|
||||
binary format, this function tries to load the version token
|
||||
from the file.
|
||||
*/
|
||||
gboolean gnc_is_bin_file (const gchar *name);
|
||||
|
||||
#endif /* IO_GNCBIN_H */
|
Loading…
Reference in New Issue
Block a user