reactos/drivers/filesystems/mup/mup.h
Cameron Gutman c2d0d784c7 [USB-BRINGUP-TRUNK]
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup
- In the future, DO NOT under any circumstances branch another branch. This leads to merge problems!

svn path=/branches/usb-bringup-trunk/; revision=55018
2012-01-20 20:58:46 +00:00

22 lines
378 B
C

#include <ntddk.h>
#define ROUND_UP(N, S) ((((N) + (S) - 1) / (S)) * (S))
typedef struct
{
ULONG Dummy;
} DEVICE_EXTENSION, *PDEVICE_EXTENSION, VCB, *PVCB;
/* create.c */
DRIVER_DISPATCH MupCreate;
NTSTATUS NTAPI
MupCreate(PDEVICE_OBJECT DeviceObject,
PIRP Irp);
/* mup.c */
NTSTATUS NTAPI
DriverEntry(PDRIVER_OBJECT DriverObject,
PUNICODE_STRING RegistryPath);