7
|
1 /* vi:set ts=8 sts=4 sw=4:
|
|
2 *
|
|
3 * VIM - Vi IMproved by Bram Moolenaar
|
|
4 * GUI support by Robert Webb
|
|
5 *
|
|
6 * Do ":help uganda" in Vim to read copying and usage conditions.
|
|
7 * Do ":help credits" in Vim to see a list of people who contributed.
|
|
8 * See README.txt for an overview of the Vim source code.
|
|
9 */
|
|
10 /*
|
|
11 * Windows GUI: main program (DLL) entry point:
|
|
12 *
|
|
13 * Ron Aaron <ronaharon@yahoo.com> wrote this and the DLL support code.
|
|
14 */
|
|
15 #ifndef WIN32_LEAN_AND_MEAN
|
|
16 # define WIN32_LEAN_AND_MEAN
|
|
17 #endif
|
|
18 #include <windows.h>
|
|
19
|
|
20 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
|
21 {
|
|
22 return TRUE;
|
|
23 }
|
|
24
|