diff options
Diffstat (limited to 'source4/ntvfs')
-rw-r--r-- | source4/ntvfs/config.mk | 2 | ||||
-rw-r--r-- | source4/ntvfs/ipc/ipc_rap.c | 1 | ||||
-rw-r--r-- | source4/ntvfs/ipc/vfs_ipc.c | 1 | ||||
-rw-r--r-- | source4/ntvfs/simple/vfs_simple.c | 1 |
4 files changed, 5 insertions, 0 deletions
diff --git a/source4/ntvfs/config.mk b/source4/ntvfs/config.mk index 177ce5d77b..84ec59e028 100644 --- a/source4/ntvfs/config.mk +++ b/source4/ntvfs/config.mk @@ -19,6 +19,7 @@ REQUIRED_SUBSYSTEMS = \ [MODULE::ntvfs_simple] INIT_FUNCTION = ntvfs_simple_init SUBSYSTEM = NTVFS +PRIVATE_PROTO_HEADER = simple/proto.h OBJ_FILES = \ simple/vfs_simple.o \ simple/svfs_util.o @@ -40,6 +41,7 @@ OBJ_FILES = \ [MODULE::ntvfs_ipc] SUBSYSTEM = NTVFS INIT_FUNCTION = ntvfs_ipc_init +PRIVATE_PROTO_HEADER = ipc/proto.h OBJ_FILES = \ ipc/vfs_ipc.o \ ipc/ipc_rap.o \ diff --git a/source4/ntvfs/ipc/ipc_rap.c b/source4/ntvfs/ipc/ipc_rap.c index f97ae4cd89..5656a96621 100644 --- a/source4/ntvfs/ipc/ipc_rap.c +++ b/source4/ntvfs/ipc/ipc_rap.c @@ -21,6 +21,7 @@ #include "includes.h" #include "libcli/rap/rap.h" +#include "ntvfs/ipc/proto.h" #define NERR_Success 0 #define NERR_badpass 86 diff --git a/source4/ntvfs/ipc/vfs_ipc.c b/source4/ntvfs/ipc/vfs_ipc.c index dd7994c1fb..d5259bc9a6 100644 --- a/source4/ntvfs/ipc/vfs_ipc.c +++ b/source4/ntvfs/ipc/vfs_ipc.c @@ -29,6 +29,7 @@ #include "dlinklist.h" #include "smb_server/smb_server.h" #include "ntvfs/ntvfs.h" +#include "ntvfs/ipc/proto.h" #include "rpc_server/dcerpc_server.h" #define IPC_BASE_FNUM 0x400 diff --git a/source4/ntvfs/simple/vfs_simple.c b/source4/ntvfs/simple/vfs_simple.c index ad06a95041..ce14877277 100644 --- a/source4/ntvfs/simple/vfs_simple.c +++ b/source4/ntvfs/simple/vfs_simple.c @@ -34,6 +34,7 @@ #include "dlinklist.h" #include "smb_server/smb_server.h" #include "ntvfs/ntvfs.h" +#include "ntvfs/simple/proto.h" #ifndef O_DIRECTORY #define O_DIRECTORY 0 |