summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorMike Fenelon <[email protected]>2017-10-03 16:26:58 -0700
committerMike Fenelon <[email protected]>2017-10-03 16:26:58 -0700
commit01acc16504688353446accb487526d4a6499a224 (patch)
tree84915c17098b0d16f51026188c95f3556c01cfce /security
parentc5080dc85b1349d980137f49c02d6c51cf4e7706 (diff)
parentda3f6c88f40a062019089716ea360b964d71f4be (diff)
Merge branch 'master' of https://github.com/MFenelon/Windows-driver-samples
Diffstat (limited to 'security')
-rw-r--r--security/elam/README.md10
-rw-r--r--security/elam/elamsample.c2
2 files changed, 11 insertions, 1 deletions
diff --git a/security/elam/README.md b/security/elam/README.md
index 927dc32d..bbd5b772 100644
--- a/security/elam/README.md
+++ b/security/elam/README.md
@@ -1,3 +1,13 @@
+<!---
+ name: Early Launch Anti-Malware Driver
+ platform: KMDF
+ language: cpp
+ category: Security
+ description: Demonstrates how to receive notifications about the initialization of regular boot start drivers in an Early Launch Anti-Malware driver.
+ samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=617954
+--->
+
+
Early Launch Anti-Malware Driver
================================
diff --git a/security/elam/elamsample.c b/security/elam/elamsample.c
index 13654d6e..0877ee71 100644
--- a/security/elam/elamsample.c
+++ b/security/elam/elamsample.c
@@ -20,7 +20,7 @@
// Kernel mode only.
//
-#include <elamsample.h>
+#include "elamsample.h"
#ifdef ALLOC_PRAGMA
#pragma alloc_text(INIT, DriverEntry)