File tree Expand file tree Collapse file tree 2 files changed +63
-26
lines changed Expand file tree Collapse file tree 2 files changed +63
-26
lines changed Original file line number Diff line number Diff line change @@ -8,42 +8,43 @@ include_directories(
8
8
${REACTOS_SOURCE_DIR} /dll/np/nfs )
9
9
10
10
list (APPEND SOURCE
11
- nfs41_daemon.c
11
+ acl.c
12
+ callback_server.c
13
+ callback_xdr.c
12
14
daemon_debug.c
13
- nfs41_ops.c
15
+ delegation.c
16
+ ea.c
17
+ getattr.c
18
+ idmap.c
19
+ lock.c
20
+ lookup.c
21
+ mount.c
22
+ name_cache.c
23
+ namespace.c
24
+ nfs41_client.c
14
25
nfs41_compound.c
15
- nfs41_xdr.c
26
+ nfs41_daemon.c
27
+ nfs41_ops.c
28
+ nfs41_rpc.c
16
29
nfs41_server.c
17
- nfs41_client.c
18
- nfs41_superblock.c
19
30
nfs41_session.c
20
- lookup .c
21
- mount .c
31
+ nfs41_superblock .c
32
+ nfs41_xdr .c
22
33
open.c
23
- readwrite.c
24
- lock.c
34
+ pnfs_debug.c
35
+ pnfs_device.c
36
+ pnfs_io.c
37
+ pnfs_layout.c
25
38
readdir.c
26
- getattr.c
39
+ readwrite.c
40
+ recovery.c
41
+ service.c
27
42
setattr.c
43
+ symlink.c
28
44
upcall.c
29
- nfs41_rpc.c
30
45
util.c
31
- pnfs_layout.c
32
- pnfs_device.c
33
- pnfs_debug.c
34
- pnfs_io.c
35
- name_cache.c
36
- namespace.c
37
46
volume.c
38
- callback_server.c
39
- callback_xdr.c
40
- service.c
41
- symlink.c
42
- idmap.c
43
- delegation.c
44
- recovery.c
45
- acl.c
46
- ea.c )
47
+ precomp.h )
47
48
48
49
add_executable (nfsd ${SOURCE} nfsd.rc )
49
50
@@ -55,6 +56,7 @@ endif()
55
56
56
57
set_module_type (nfsd win32cui )
57
58
add_importlibs (nfsd advapi32 iphlpapi kernel32_vista libtirpc msvcrt shell32 ws2_32 wldap32 kernel32 ntdll )
59
+ add_pch (nfsd precomp.h SOURCE )
58
60
add_cd_file (TARGET nfsd DESTINATION reactos/system32 FOR all )
59
61
add_cd_file (FILE "${CMAKE_CURRENT_SOURCE_DIR} /netconfig" DESTINATION reactos/system32/drivers/etc FOR all )
60
62
add_cd_file (FILE "${CMAKE_CURRENT_SOURCE_DIR} /ms-nfs41-idmap.conf" DESTINATION reactos/system32/drivers/etc FOR all )
Original file line number Diff line number Diff line change
1
+ #ifndef _NFSD_PRECOMP_H_
2
+ #define _NFSD_PRECOMP_H_
3
+
4
+ #include <stdio.h>
5
+ #include <stdlib.h>
6
+ #include <process.h>
7
+ #include <tchar.h>
8
+ #include <time.h>
9
+ #include <windows.h>
10
+ #include <strsafe.h>
11
+ #include <devioctl.h>
12
+ #include <iphlpapi.h>
13
+ #include <wincrypt.h>
14
+ #include <winsock2.h>
15
+
16
+ #include "daemon_debug.h"
17
+ #include "delegation.h"
18
+ #include "from_kernel.h"
19
+ #include "idmap.h"
20
+ #include "nfs41.h"
21
+ #include "nfs41_callback.h"
22
+ #include "nfs41_compound.h"
23
+ #include "nfs41_ops.h"
24
+ #include "name_cache.h"
25
+ #include "nfs41_xdr.h"
26
+ #include "recovery.h"
27
+ #include "tree.h"
28
+ #include "upcall.h"
29
+ #include "util.h"
30
+
31
+ #include <nfs41_driver.h>
32
+ #include <rpc/rpc.h>
33
+ #include <rpc/auth_sspi.h>
34
+
35
+ #endif /* _NFSD_PRECOMP_H_ */
You can’t perform that action at this time.
0 commit comments