aboutsummaryrefslogtreecommitdiffstats
path: root/api/adapter.c
diff options
context:
space:
mode:
Diffstat (limited to 'api/adapter.c')
-rw-r--r--api/adapter.c23
1 files changed, 22 insertions, 1 deletions
diff --git a/api/adapter.c b/api/adapter.c
index c0df8e9..bc166c6 100644
--- a/api/adapter.c
+++ b/api/adapter.c
@@ -3,7 +3,28 @@
* Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
*/
-#include "pch.h"
+#include "adapter.h"
+#include "elevate.h"
+#include "entry.h"
+#include "logger.h"
+#include "namespace.h"
+#include "nci.h"
+#include "ntldr.h"
+#include "registry.h"
+#include "resource.h"
+
+#include <Windows.h>
+#include <winternl.h>
+#define _NTDEF_ //TODO: figure out how to include ntsecapi and winternal together without requiring this
+#include <cfgmgr32.h>
+#include <devguid.h>
+#include <iphlpapi.h>
+#include <ndisguid.h>
+#include <newdev.h>
+#include <NTSecAPI.h>
+#include <SetupAPI.h>
+#include <Shlwapi.h>
+#include <wchar.h>
#pragma warning(disable : 4221) /* nonstandard: address of automatic in initializer */