- Check that all pins have been closed when the last filter reference is gone
[reactos.git] / reactos / drivers / filesystems / mup / mup.h
1 #ifndef MUP_H
2 #define MUP_H
3
4 #ifndef TAG
5 #define TAG(A, B, C, D) (ULONG)(((A)<<0) + ((B)<<8) + ((C)<<16) + ((D)<<24))
6 #endif
7
8 #define ROUND_UP(N, S) ((((N) + (S) - 1) / (S)) * (S))
9
10
11
12 typedef struct
13 {
14 ULONG Dummy;
15
16 } DEVICE_EXTENSION, *PDEVICE_EXTENSION, VCB, *PVCB;
17
18
19
20 /* create.c */
21 DRIVER_DISPATCH MupCreate;
22 NTSTATUS NTAPI
23 MupCreate(PDEVICE_OBJECT DeviceObject,
24 PIRP Irp);
25
26 /* mup.c */
27
28 NTSTATUS NTAPI
29 DriverEntry(PDRIVER_OBJECT DriverObject,
30 PUNICODE_STRING RegistryPath);
31
32 #endif /* MUP_H */