summaryrefslogtreecommitdiff
path: root/src/os_w32dll.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-03-28 22:43:16 +0100
committerBram Moolenaar <Bram@vim.org>2019-03-28 22:43:16 +0100
commit89828e9fe6de4d70e0e2ccd3c711bd26632c26a9 (patch)
treed0f1fbba4175b0e49b8b60185bf5f9516fd73e19 /src/os_w32dll.c
parent47cf1cc2576b576898f25cea325139bdbba90fe6 (diff)
downloadvim-git-89828e9fe6de4d70e0e2ccd3c711bd26632c26a9.tar.gz
patch 8.1.1066: VIMDLL isn't actually usedv8.1.1066
Problem: VIMDLL isn't actually used. Solution: Remove VIMDLL support.
Diffstat (limited to 'src/os_w32dll.c')
-rw-r--r--src/os_w32dll.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/os_w32dll.c b/src/os_w32dll.c
deleted file mode 100644
index 5b944008f..000000000
--- a/src/os_w32dll.c
+++ /dev/null
@@ -1,24 +0,0 @@
-/* vi:set ts=8 sts=4 sw=4 noet:
- *
- * VIM - Vi IMproved by Bram Moolenaar
- * GUI support by Robert Webb
- *
- * Do ":help uganda" in Vim to read copying and usage conditions.
- * Do ":help credits" in Vim to see a list of people who contributed.
- * See README.txt for an overview of the Vim source code.
- */
-/*
- * Windows GUI: main program (DLL) entry point:
- *
- * Ron Aaron <ronaharon@yahoo.com> wrote this and the DLL support code.
- */
-#ifndef WIN32_LEAN_AND_MEAN
-# define WIN32_LEAN_AND_MEAN
-#endif
-#include <windows.h>
-
-BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
-{
- return TRUE;
-}
-