[MUP]
authorAmine Khaldi <amine.khaldi@reactos.org>
Thu, 6 Feb 2014 18:05:58 +0000 (18:05 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Thu, 6 Feb 2014 18:05:58 +0000 (18:05 +0000)
* Add header guards to the main header.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=62014

reactos/drivers/filesystems/mup/mup.h

index 9bb1564..12b7c45 100644 (file)
@@ -1,5 +1,7 @@
+#ifndef _MUP_PCH_
+#define _MUP_PCH_
 
-#include <ntddk.h>
+#include <wdm.h>
 
 #define ROUND_UP(N, S) ((((N) + (S) - 1) / (S)) * (S))
 
@@ -19,3 +21,5 @@ MupCreate(PDEVICE_OBJECT DeviceObject,
 NTSTATUS NTAPI
 DriverEntry(PDRIVER_OBJECT DriverObject,
            PUNICODE_STRING RegistryPath);
+
+#endif /* _MUP_PCH_ */