Sync with trunk r63343.
[reactos.git] / drivers / filesystems / mup / mup.h
1 #ifndef _MUP_PCH_
2 #define _MUP_PCH_
3
4 #include <wdm.h>
5
6 #define ROUND_UP(N, S) ((((N) + (S) - 1) / (S)) * (S))
7
8 typedef struct
9 {
10 ULONG Dummy;
11
12 } DEVICE_EXTENSION, *PDEVICE_EXTENSION, VCB, *PVCB;
13
14 /* create.c */
15 DRIVER_DISPATCH MupCreate;
16 NTSTATUS NTAPI
17 MupCreate(PDEVICE_OBJECT DeviceObject,
18 PIRP Irp);
19
20 /* mup.c */
21 NTSTATUS NTAPI
22 DriverEntry(PDRIVER_OBJECT DriverObject,
23 PUNICODE_STRING RegistryPath);
24
25 #endif /* _MUP_PCH_ */