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