Delete the unused and slightly pointless gnucash_foo_version functions

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20193 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
John Ralls 2011-01-29 20:58:56 +00:00
parent 4187f8dc78
commit 1f3b1ea0db
2 changed files with 0 additions and 26 deletions

View File

@ -48,25 +48,6 @@ gpointer g_error_cb_data;
// static QofLogModule log_module = GNC_MOD_ENGINE;
/* GnuCash version functions */
unsigned int
gnucash_major_version (void)
{
return GNUCASH_MAJOR_VERSION;
}
unsigned int
gnucash_minor_version (void)
{
return GNUCASH_MINOR_VERSION;
}
unsigned int
gnucash_micro_version (void)
{
return GNUCASH_MICRO_VERSION;
}
/********************************************************************
* gnc_engine_init
* initialize backend, load any necessary databases, etc.

View File

@ -219,13 +219,6 @@ typedef void (* gnc_engine_init_hook_t)(int, char **);
/** PROTOTYPES ******************************************************/
/** GnuCash version number information. */
unsigned int gnucash_major_version (void);
/** GnuCash version number information. */
unsigned int gnucash_minor_version (void);
/** GnuCash version number information. */
unsigned int gnucash_micro_version (void);
/** gnc_engine_init should be called before gnc engine
* functions can be used - see also ::qof_init for a
* method that does not require Guile. */