mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
move over typedef
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8579 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
8d97c8b30f
commit
676d19aaf9
@ -33,6 +33,8 @@
|
|||||||
#ifndef GNC_BOOK_H
|
#ifndef GNC_BOOK_H
|
||||||
#define GNC_BOOK_H
|
#define GNC_BOOK_H
|
||||||
|
|
||||||
|
#include <glib.h>
|
||||||
|
|
||||||
#include "GNCId.h"
|
#include "GNCId.h"
|
||||||
#include "kvp_frame.h"
|
#include "kvp_frame.h"
|
||||||
|
|
||||||
@ -42,6 +44,9 @@
|
|||||||
*/
|
*/
|
||||||
typedef struct gnc_book_struct GNCBook;
|
typedef struct gnc_book_struct GNCBook;
|
||||||
|
|
||||||
|
/** GList of GNCBook */
|
||||||
|
typedef GList BookList;
|
||||||
|
|
||||||
/** Allocate, initialise and return a new GNCBook. The new book will
|
/** Allocate, initialise and return a new GNCBook. The new book will
|
||||||
contain a newly allocated AccountGroup */
|
contain a newly allocated AccountGroup */
|
||||||
GNCBook * gnc_book_new (void);
|
GNCBook * gnc_book_new (void);
|
||||||
|
@ -103,8 +103,6 @@ typedef struct gnc_lot_struct GNCLot;
|
|||||||
/** GList of Account */
|
/** GList of Account */
|
||||||
typedef GList AccountList;
|
typedef GList AccountList;
|
||||||
/** GList of GNCBook */
|
/** GList of GNCBook */
|
||||||
typedef GList BookList;
|
|
||||||
/** GList of GNCLot */
|
|
||||||
typedef GList LotList;
|
typedef GList LotList;
|
||||||
/** GList of Split */
|
/** GList of Split */
|
||||||
typedef GList SplitList;
|
typedef GList SplitList;
|
||||||
|
Loading…
Reference in New Issue
Block a user