~siretart/gnucash/ubuntu-fullsource

« back to all changes in this revision

Viewing changes to src/gnc-module/test/misc-mods/agedver.c

  • Committer: Reinhard Tartler
  • Date: 2008-08-03 07:25:46 UTC
  • Revision ID: siretart@tauware.de-20080803072546-y6p8xda8zpfi62ys
import gnucash_2.2.4.orig.tar.gz

The original tarball had the md5sum: 27e660297dc5b8ce574515779d05a5a5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* agedver.c : testing module age? */
 
2
 
 
3
#include <stdio.h>
 
4
#include <gmodule.h>
 
5
 
 
6
#include "gnc-module.h"
 
7
#include "gnc-module-api.h"
 
8
 
 
9
GNC_MODULE_API_DECL(libagedver)
 
10
 
 
11
int libagedver_gnc_module_system_interface = 0;
 
12
 
 
13
int libagedver_gnc_module_current = 12;
 
14
int libagedver_gnc_module_age = 9;
 
15
int libagedver_gnc_module_revision = 0;
 
16
 
 
17
char *
 
18
libagedver_gnc_module_path(void) {
 
19
  return g_strdup("gnucash/agedver");
 
20
}
 
21
 
 
22
char *
 
23
libagedver_gnc_module_description(void) {
 
24
  return g_strdup("this is a frequently extended module");
 
25
}
 
26
 
 
27
int
 
28
libagedver_gnc_module_init(int refcount) {
 
29
  return TRUE;
 
30
}