From fe0706d5d5813edc29c909c4f74c593fb5717190 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 29 Jun 2004 09:20:18 +0000 Subject: 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) --- source4/include/module.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/include') 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 */ -- cgit