diff options
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/includes.h | 3 | ||||
-rw-r--r-- | source4/include/module.h | 30 | ||||
-rw-r--r-- | source4/include/ntvfs.h | 3 | ||||
-rw-r--r-- | source4/include/smb.h | 3 |
4 files changed, 35 insertions, 4 deletions
diff --git a/source4/include/includes.h b/source4/include/includes.h index 0f5e73cf56..908d2a4e76 100644 --- a/source4/include/includes.h +++ b/source4/include/includes.h @@ -759,11 +759,12 @@ extern int errno; #include "ntlmssp.h" #include "auth.h" - #include "passdb.h" #include "session.h" +#include "module.h" + #include "asn_1.h" #include "popt.h" diff --git a/source4/include/module.h b/source4/include/module.h new file mode 100644 index 0000000000..02826595e4 --- /dev/null +++ b/source4/include/module.h @@ -0,0 +1,30 @@ +/* + Unix SMB/CIFS implementation. + Handling of idle/exit events + Copyright (C) Jelmer Vernooij 2003 + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +*/ + +#ifndef _MODULE_H +#define _MODULE_H + +/* Module support */ +typedef NTSTATUS (*init_module_function) (void); + +/* Module that registers a backend for a certain subsystem */ +typedef NTSTATUS (*register_backend_function) (void *data); + +#endif /* _MODULE_H */ diff --git a/source4/include/ntvfs.h b/source4/include/ntvfs.h index 2b1f519b32..b972a4ef99 100644 --- a/source4/include/ntvfs.h +++ b/source4/include/ntvfs.h @@ -32,6 +32,9 @@ enum ntvfs_type {NTVFS_DISK, NTVFS_PRINT, NTVFS_IPC}; /* the ntvfs operations structure - contains function pointers to the backend implementations of each operation */ struct ntvfs_ops { + const char *name; + enum ntvfs_type type; + /* initial setup */ NTSTATUS (*connect)(struct request_context *req, const char *sharename); NTSTATUS (*disconnect)(struct tcon_context *conn); diff --git a/source4/include/smb.h b/source4/include/smb.h index f6a4281e01..e9f09ce0a5 100644 --- a/source4/include/smb.h +++ b/source4/include/smb.h @@ -1355,9 +1355,6 @@ typedef struct { #define DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH 14 -/* Module support */ -typedef int (init_module_function) (void); - /* a set of flags to control handling of request structures */ #define REQ_CONTROL_PROTECTED (1<<0) /* don't destroy this request */ |