mirror of https://github.com/Gnucash/gnucash
* src/engine/engine-helpers.[ch]: remove cruft * src/guile/gnc-helpers.c: fix warnings * src/import-export/qif-import/gncmod-qif-import.c: include api header * src/register/register-gnome/gncmod-register-gnome.c: include api header * src/register/register-core/gncmod-register-core.c: include api header * src/register/ledger-core/gncmod-ledger-core.c: include api header * src/backend/postgres/gncmod-backend-postgres.c: include api header * src/backend/rpc/gncmod-backend-rpc.c: include api header * src/backend/file/gnc-pricedb-xml-v1.c: fix warning * src/backend/file/Makefile.am (SUBDIRS): fix includes * src/backend/file/gncmod-backend-file.c: include api header * src/engine/gncmod-engine.c: include api header * src/gnc-module/test/test-dynload.c: fix warning * src/gnc-module/test/misc-mods/agedver.c: include api header * src/gnc-module/test/misc-mods/incompatdep.c: include api header * src/gnc-module/test/misc-mods/futuremodsys.c: include api header * src/gnc-module/test/mod-baz/gnc-mod-baz.c: include api header * src/gnc-module/test/mod-bar/gnc-mod-bar.c: include api header * src/gnc-module/test/mod-bar/Makefile.am: fix includes * src/gnc-module/test/mod-foo/gnc-mod-foo.c: include api header * src/gnc-module/test/mod-foo/Makefile.am: fix includes * src/gnc-module/gnc-module-api.h: new file. public module api * src/gnc-module/Makefile.am: add headers git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5088 57a11ea4-9604-0410-9ed3-97b8803252fdzzzoldfeatures/g2-gog-integ
parent
aa78390c19
commit
2e0cea3a65
@ -0,0 +1,31 @@
|
||||
/********************************************************************\
|
||||
* gnc-backend-api.h -- public functions needed by gnucash backends *
|
||||
* Copyright (C) 2001 Linux Developers Group, Inc. *
|
||||
* *
|
||||
* 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 *
|
||||
* 59 Temple Place - Suite 330 Fax: +1-617-542-2652 *
|
||||
* Boston, MA 02111-1307, USA gnu@gnu.org *
|
||||
* *
|
||||
\********************************************************************/
|
||||
|
||||
#ifndef GNC_BACKEND_API_H
|
||||
#define GNC_BACKEND_API_H
|
||||
|
||||
#include "Backend.h"
|
||||
|
||||
Backend * gnc_backend_new (void);
|
||||
|
||||
#endif
|
||||
@ -0,0 +1,32 @@
|
||||
/********************************************************************\
|
||||
* gnc-module-api.h -- public functions needed by gnucash modules *
|
||||
* Copyright (C) 2001 Linux Developers Group, Inc. *
|
||||
* *
|
||||
* 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 *
|
||||
* 59 Temple Place - Suite 330 Fax: +1-617-542-2652 *
|
||||
* Boston, MA 02111-1307, USA gnu@gnu.org *
|
||||
* *
|
||||
\********************************************************************/
|
||||
|
||||
#ifndef GNC_MODULE_API_H
|
||||
#define GNC_MODULE_API_H
|
||||
|
||||
char * gnc_module_path (void);
|
||||
char * gnc_module_description (void);
|
||||
int gnc_module_init (int refcount);
|
||||
int gnc_module_end(int refcount);
|
||||
|
||||
#endif
|
||||
Loading…
Reference in new issue