mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-27 03:10:23 -06:00
19 lines
503 B
C
19 lines
503 B
C
|
/*
|
||
|
* gncEntryP.h -- the Core Busines Entry Interface
|
||
|
* Copyright (C) 2001 Derek Atkins
|
||
|
* Author: Derek Atkins <warlord@MIT.EDU>
|
||
|
*/
|
||
|
|
||
|
#ifndef GNC_ENTRYP_H_
|
||
|
#define GNC_ENTRYP_H_
|
||
|
|
||
|
#include "gncEntry.h"
|
||
|
|
||
|
gboolean gncEntryRegister (void);
|
||
|
void gncEntrySetGUID (GncEntry *entry, const GUID *guid);
|
||
|
void gncEntrySetOrder (GncEntry *entry, GncOrder *order);
|
||
|
void gncEntrySetInvoice (GncEntry *entry, GncInvoice *invoice);
|
||
|
void gncEntrySetDirty (GncEntry *entry, gboolean dirty);
|
||
|
|
||
|
#endif /* GNC_ENTRYP_H_ */
|