* Add header guards to the main header.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=62014
This commit is contained in:
Amine Khaldi
2014-02-06 18:05:58 +00:00
parent 6353845cf6
commit 27557e4cd0
+5 -1
View 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_ */