summaryrefslogtreecommitdiffstats
path: root/third_party/python/gyp/test/win/win-driver-target-type/win-driver-target-type.c
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/python/gyp/test/win/win-driver-target-type/win-driver-target-type.c')
-rw-r--r--third_party/python/gyp/test/win/win-driver-target-type/win-driver-target-type.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/third_party/python/gyp/test/win/win-driver-target-type/win-driver-target-type.c b/third_party/python/gyp/test/win/win-driver-target-type/win-driver-target-type.c
new file mode 100644
index 0000000000..a6bee029ab
--- /dev/null
+++ b/third_party/python/gyp/test/win/win-driver-target-type/win-driver-target-type.c
@@ -0,0 +1,10 @@
+// Copyright (c) 2016 Google Inc. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "win-driver-target-type.h"
+
+NTSTATUS DriverEntry(_In_ struct _DRIVER_OBJECT *DriverObject,
+ _In_ PUNICODE_STRING RegistryPath) {
+ return STATUS_SUCCESS;
+}