summaryrefslogtreecommitdiff
path: root/source4/include
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2004-06-29 09:20:18 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:56:49 -0500
commitfe0706d5d5813edc29c909c4f74c593fb5717190 (patch)
tree1870278e4573deced94668afc94ca6adf7968bc9 /source4/include
parent118f3edd27f5adacc1da636ed05b33f04999584f (diff)
downloadsamba-fe0706d5d5813edc29c909c4f74c593fb5717190.tar.gz
samba-fe0706d5d5813edc29c909c4f74c593fb5717190.tar.bz2
samba-fe0706d5d5813edc29c909c4f74c593fb5717190.zip
r1292: Add const to the subsystem/module registration code.
Add some 'multi init' code, until we get a better set of infrustructure. Andrew Bartlett (This used to be commit 982422b2d286335378531ae9523e74192340af3c)
Diffstat (limited to 'source4/include')
-rw-r--r--source4/include/module.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/include/module.h b/source4/include/module.h
index 02826595e4..5994b85f8e 100644
--- a/source4/include/module.h
+++ b/source4/include/module.h
@@ -25,6 +25,6 @@
typedef NTSTATUS (*init_module_function) (void);
/* Module that registers a backend for a certain subsystem */
-typedef NTSTATUS (*register_backend_function) (void *data);
+typedef NTSTATUS (*register_backend_function) (const void *data);
#endif /* _MODULE_H */