aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui/syntax/confview.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/syntax/confview.h')
-rw-r--r--ui/syntax/confview.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/ui/syntax/confview.h b/ui/syntax/confview.h
deleted file mode 100644
index d415dfe8..00000000
--- a/ui/syntax/confview.h
+++ /dev/null
@@ -1,20 +0,0 @@
-/* SPDX-License-Identifier: MIT
- *
- * Copyright (C) 2019 WireGuard LLC. All Rights Reserved.
- */
-
-#ifndef CONFVIEW_H
-#define CONFVIEW_H
-
-#include <stdbool.h>
-#include <windows.h>
-#include <richedit.h>
-
-#define CONFVIEW_STYLE (WS_CHILD | WS_CLIPSIBLINGS | ES_MULTILINE | WS_VISIBLE | WS_VSCROLL | ES_READONLY | WS_TABSTOP | ES_WANTRETURN | ES_NOOLEDRAGDROP)
-#define CONFVIEW_EXTSTYLE (WS_EX_TRANSPARENT)
-
-#define PV_NEWRTF (WM_USER + 0x3200)
-
-extern bool register_conf_view(void);
-
-#endif