diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2002-10-30 12:01:19 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2002-10-30 12:01:19 +0000 |
commit | 567d1d7c211925e82b9384c2c3ada527ab5334c8 (patch) | |
tree | 1086c0669888172aea609795a278781fae16be49 | |
parent | 1f40ad5813679a979f110f4b5346abd2a7516b39 (diff) | |
download | samba-567d1d7c211925e82b9384c2c3ada527ab5334c8.tar.gz samba-567d1d7c211925e82b9384c2c3ada527ab5334c8.tar.bz2 samba-567d1d7c211925e82b9384c2c3ada527ab5334c8.zip |
Add init_module_function typedef for new module system
(This used to be commit 4d1206be5275a8af7dfb612f1747fba484a7d017)
-rw-r--r-- | source3/include/smb.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index e42bcb3319..65a75420fc 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -1697,4 +1697,7 @@ typedef struct { extern struct poptOption popt_common_debug[]; extern struct poptOption popt_common_configfile[]; +/* Module support */ +typedef int (init_module_function) (void); + #endif /* _SMB_H */ |