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 | 4d1206be5275a8af7dfb612f1747fba484a7d017 (patch) | |
tree | 2eee27983bd1dbbc78fa71a34fffb3a3b42aa657 | |
parent | b5d05d3ec6808465d27e15db2a9ff48804e2e78e (diff) | |
download | samba-4d1206be5275a8af7dfb612f1747fba484a7d017.tar.gz samba-4d1206be5275a8af7dfb612f1747fba484a7d017.tar.xz samba-4d1206be5275a8af7dfb612f1747fba484a7d017.zip |
Add init_module_function typedef for new module system
-rw-r--r-- | source/include/smb.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/include/smb.h b/source/include/smb.h index e42bcb33192..65a75420fca 100644 --- a/source/include/smb.h +++ b/source/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 */ |