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:
Linas Vepstas 2003-06-11 17:04:08 +00:00
parent 8d97c8b30f
commit 676d19aaf9
2 changed files with 5 additions and 2 deletions

View File

@ -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);

View File

@ -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;