Changeset 988 for vendor/current/source4/ntvfs/print
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source4/ntvfs/print/vfs_print.c
r740 r988 23 23 24 24 #include "includes.h" 25 #include " libcli/raw/ioctl.h"25 #include "../libcli/smb/smb_constants.h" 26 26 #include "ntvfs/ntvfs.h" 27 27 #include "param/param.h" 28 29 NTSTATUS ntvfs_print_init(void); 28 30 29 31 /* … … 114 116 115 117 /* fill in all the operations */ 116 ops.connect = print_connect;117 ops.disconnect = print_disconnect;118 ops.unlink = print_unlink;119 ops.ioctl = print_ioctl;118 ops.connect_fn = print_connect; 119 ops.disconnect_fn = print_disconnect; 120 ops.unlink_fn = print_unlink; 121 ops.ioctl_fn = print_ioctl; 120 122 121 123 /* register ourselves with the NTVFS subsystem. We register under the name 'default'
Note:
See TracChangeset
for help on using the changeset viewer.