aboutsummaryrefslogtreecommitdiffstats
path: root/api/rundll32.c
diff options
context:
space:
mode:
Diffstat (limited to 'api/rundll32.c')
-rw-r--r--api/rundll32.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/api/rundll32.c b/api/rundll32.c
index 85121a5..8bab711 100644
--- a/api/rundll32.c
+++ b/api/rundll32.c
@@ -3,6 +3,10 @@
* Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
*/
+#include "entry.h"
+
+#if ACCEPT_WOW64 == 1
+
#include "adapter.h"
#include "logger.h"
#include "wintun.h"
@@ -14,8 +18,6 @@
#define EXPORT comment(linker, "/EXPORT:" __FUNCTION__ "=" __FUNCDNAME__)
-#if defined(ACCEPT_WOW64) || defined(_DEBUG)
-
static DWORD
WriteFormatted(_In_ DWORD StdHandle, _In_z_ const WCHAR *Template, ...)
{
@@ -147,5 +149,4 @@ VOID __stdcall DeleteDriver(HWND hwnd, HINSTANCE hinst, LPSTR lpszCmdLine, int n
WriteFormatted(STD_OUTPUT_HANDLE, L"%1!X!", WintunDeleteDriver());
Done();
}
-
#endif