From 9565c708987fbe69b9ac981c99f6a5f239784c4a Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 19 Mar 2006 17:51:15 +0000 Subject: r14567: Make some more functions public. (This used to be commit 8e84e6cb6b172c89072723e07f344da8f4476c1f) --- source4/smbd/process_model.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/smbd') diff --git a/source4/smbd/process_model.c b/source4/smbd/process_model.c index 5a01ad4fab..bfe3a67e1a 100644 --- a/source4/smbd/process_model.c +++ b/source4/smbd/process_model.c @@ -26,7 +26,7 @@ /* setup the events for the chosen process model */ -const struct model_ops *process_model_startup(struct event_context *ev, const char *model) +_PUBLIC_ const struct model_ops *process_model_startup(struct event_context *ev, const char *model) { const struct model_ops *ops; @@ -53,7 +53,7 @@ static int num_models; The 'name' can be later used by other backends to find the operations structure for this backend. */ -NTSTATUS register_process_model(const void *_ops) +_PUBLIC_ NTSTATUS register_process_model(const void *_ops) { const struct model_ops *ops = _ops; -- cgit