Mercurial > vim
annotate src/os_w32exe.c @ 16353:e0266f56b5e8
Added tag v8.1.1181 for changeset c742c008953e7a37f7f2249ed5dccd505640f8a7
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 17 Apr 2019 17:15:06 +0200 |
parents | b0e19f135e50 |
children | 7ae2396cef62 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 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 (EXE) entry point: | |
12 * | |
16194
3a5114768cfa
patch 8.1.1102: Win32 exe file contains unused code
Bram Moolenaar <Bram@vim.org>
parents:
16123
diff
changeset
|
13 * Ron Aaron <ronaharon@yahoo.com> wrote this and the (now deleted) DLL support |
3a5114768cfa
patch 8.1.1102: Win32 exe file contains unused code
Bram Moolenaar <Bram@vim.org>
parents:
16123
diff
changeset
|
14 * code. |
7 | 15 */ |
16 #include "vim.h" | |
17 | |
18 #ifdef __MINGW32__ | |
19 # ifndef _cdecl | |
20 # define _cdecl | |
21 # endif | |
22 #endif | |
23 | |
16194
3a5114768cfa
patch 8.1.1102: Win32 exe file contains unused code
Bram Moolenaar <Bram@vim.org>
parents:
16123
diff
changeset
|
24 // cproto doesn't create a prototype for VimMain() |
3a5114768cfa
patch 8.1.1102: Win32 exe file contains unused code
Bram Moolenaar <Bram@vim.org>
parents:
16123
diff
changeset
|
25 int _cdecl VimMain(int argc, char **argv); |
3a5114768cfa
patch 8.1.1102: Win32 exe file contains unused code
Bram Moolenaar <Bram@vim.org>
parents:
16123
diff
changeset
|
26 #ifdef FEAT_GUI |
3a5114768cfa
patch 8.1.1102: Win32 exe file contains unused code
Bram Moolenaar <Bram@vim.org>
parents:
16123
diff
changeset
|
27 void _cdecl SaveInst(HINSTANCE hInst); |
7 | 28 #endif |
29 | |
30 #ifndef PROTO | |
16198
b0e19f135e50
patch 8.1.1104: MS-Windows: not all environment variables can be used
Bram Moolenaar <Bram@vim.org>
parents:
16194
diff
changeset
|
31 # ifdef FEAT_GUI |
7 | 32 int WINAPI |
16198
b0e19f135e50
patch 8.1.1104: MS-Windows: not all environment variables can be used
Bram Moolenaar <Bram@vim.org>
parents:
16194
diff
changeset
|
33 wWinMain( |
16194
3a5114768cfa
patch 8.1.1102: Win32 exe file contains unused code
Bram Moolenaar <Bram@vim.org>
parents:
16123
diff
changeset
|
34 HINSTANCE hInstance, |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
35 HINSTANCE hPrevInst UNUSED, |
16198
b0e19f135e50
patch 8.1.1104: MS-Windows: not all environment variables can be used
Bram Moolenaar <Bram@vim.org>
parents:
16194
diff
changeset
|
36 LPWSTR lpszCmdLine UNUSED, |
10783
04eb70c77cf4
patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
37 int nCmdShow UNUSED) |
16198
b0e19f135e50
patch 8.1.1104: MS-Windows: not all environment variables can be used
Bram Moolenaar <Bram@vim.org>
parents:
16194
diff
changeset
|
38 # else |
b0e19f135e50
patch 8.1.1104: MS-Windows: not all environment variables can be used
Bram Moolenaar <Bram@vim.org>
parents:
16194
diff
changeset
|
39 int |
b0e19f135e50
patch 8.1.1104: MS-Windows: not all environment variables can be used
Bram Moolenaar <Bram@vim.org>
parents:
16194
diff
changeset
|
40 wmain(int argc UNUSED, wchar_t **argv UNUSED) |
b0e19f135e50
patch 8.1.1104: MS-Windows: not all environment variables can be used
Bram Moolenaar <Bram@vim.org>
parents:
16194
diff
changeset
|
41 # endif |
7 | 42 { |
16194
3a5114768cfa
patch 8.1.1102: Win32 exe file contains unused code
Bram Moolenaar <Bram@vim.org>
parents:
16123
diff
changeset
|
43 # ifdef FEAT_GUI |
3a5114768cfa
patch 8.1.1102: Win32 exe file contains unused code
Bram Moolenaar <Bram@vim.org>
parents:
16123
diff
changeset
|
44 SaveInst(hInstance); |
3a5114768cfa
patch 8.1.1102: Win32 exe file contains unused code
Bram Moolenaar <Bram@vim.org>
parents:
16123
diff
changeset
|
45 # endif |
16198
b0e19f135e50
patch 8.1.1104: MS-Windows: not all environment variables can be used
Bram Moolenaar <Bram@vim.org>
parents:
16194
diff
changeset
|
46 VimMain(0, NULL); |
7 | 47 |
48 return 0; | |
49 } | |
50 #endif |