blob: 53d96df8bfb8743a3a919f6758019e05363d6f66 [file] [log] [blame]
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved gvimext by Tianmiao Hu
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 */
8
9/*
10 * gvimext is a DLL which is used for the "Edit with Vim" context menu
11 * extension. It implements a MS defined interface with the Shell.
12 *
13 * If you have any questions or any suggestions concerning gvimext, please
14 * contact Tianmiao Hu: tianmiao@acm.org.
15 */
16
17#include "gvimext.h"
18
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000019static char *searchpath(char *name);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000020
21// Always get an error while putting the following stuff to the
22// gvimext.h file as class protected variables, give up and
23// declare them as global stuff
24FORMATETC fmte = {CF_HDROP,
25 (DVTARGETDEVICE FAR *)NULL,
26 DVASPECT_CONTENT,
27 -1,
28 TYMED_HGLOBAL
29 };
30STGMEDIUM medium;
31HRESULT hres = 0;
32UINT cbFiles = 0;
33
Bram Moolenaar6199d432017-10-14 19:05:44 +020034/* The buffers size used to be MAX_PATH (260 bytes), but that's not always
Bram Moolenaare759a7a2005-07-12 22:50:18 +000035 * enough */
36#define BUFSIZE 1100
37
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000038//
39// Get the name of the Gvim executable to use, with the path.
40// When "runtime" is non-zero, we were called to find the runtime directory.
Bram Moolenaare759a7a2005-07-12 22:50:18 +000041// Returns the path in name[BUFSIZE]. It's empty when it fails.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000042//
43 static void
44getGvimName(char *name, int runtime)
45{
46 HKEY keyhandle;
47 DWORD hlen;
48
49 // Get the location of gvim from the registry.
50 name[0] = 0;
51 if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, "Software\\Vim\\Gvim", 0,
52 KEY_READ, &keyhandle) == ERROR_SUCCESS)
53 {
Bram Moolenaare759a7a2005-07-12 22:50:18 +000054 hlen = BUFSIZE;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000055 if (RegQueryValueEx(keyhandle, "path", 0, NULL, (BYTE *)name, &hlen)
56 != ERROR_SUCCESS)
57 name[0] = 0;
58 else
59 name[hlen] = 0;
60 RegCloseKey(keyhandle);
61 }
62
63 // Registry didn't work, use the search path.
64 if (name[0] == 0)
Bram Moolenaar7baa45d2007-08-18 15:00:42 +000065 strcpy(name, searchpath((char *)"gvim.exe"));
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000066
67 if (!runtime)
68 {
69 // Only when looking for the executable, not the runtime dir, we can
70 // search for the batch file or a name without a path.
71 if (name[0] == 0)
Bram Moolenaar7baa45d2007-08-18 15:00:42 +000072 strcpy(name, searchpath((char *)"gvim.bat"));
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000073 if (name[0] == 0)
74 strcpy(name, "gvim"); // finds gvim.bat or gvim.exe
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000075 }
76}
77
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +020078 static void
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +020079getGvimInvocation(char *name, int runtime)
80{
81 getGvimName(name, runtime);
82 // avoid that Vim tries to expand wildcards in the file names
83 strcat(name, " --literal");
84}
85
86 static void
87getGvimInvocationW(wchar_t *nameW)
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +020088{
89 char *name;
90
91 name = (char *)malloc(BUFSIZE);
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +020092 getGvimInvocation(name, 0);
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +020093 mbstowcs(nameW, name, BUFSIZE);
94 free(name);
95}
96
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000097//
Bram Moolenaare759a7a2005-07-12 22:50:18 +000098// Get the Vim runtime directory into buf[BUFSIZE].
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000099// The result is empty when it failed.
100// When it works, the path ends in a slash or backslash.
101//
102 static void
103getRuntimeDir(char *buf)
104{
105 int idx;
106
107 getGvimName(buf, 1);
108 if (buf[0] != 0)
109 {
110 // When no path found, use the search path to expand it.
111 if (strchr(buf, '/') == NULL && strchr(buf, '\\') == NULL)
112 strcpy(buf, searchpath(buf));
113
114 // remove "gvim.exe" from the end
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000115 for (idx = (int)strlen(buf) - 1; idx >= 0; idx--)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000116 if (buf[idx] == '\\' || buf[idx] == '/')
117 {
118 buf[idx + 1] = 0;
119 break;
120 }
121 }
122}
123
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200124HBITMAP IconToBitmap(HICON hIcon, HBRUSH hBackground, int width, int height)
125{
126 HDC hDC = GetDC(NULL);
127 HDC hMemDC = CreateCompatibleDC(hDC);
128 HBITMAP hMemBmp = CreateCompatibleBitmap(hDC, width, height);
129 HBITMAP hResultBmp = NULL;
130 HGDIOBJ hOrgBMP = SelectObject(hMemDC, hMemBmp);
131
132 DrawIconEx(hMemDC, 0, 0, hIcon, width, height, 0, hBackground, DI_NORMAL);
133
134 hResultBmp = hMemBmp;
135 hMemBmp = NULL;
136
137 SelectObject(hMemDC, hOrgBMP);
138 DeleteDC(hMemDC);
139 ReleaseDC(NULL, hDC);
140 DestroyIcon(hIcon);
141 return hResultBmp;
142}
143
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000144//
145// GETTEXT: translated messages and menu entries
146//
147#ifndef FEAT_GETTEXT
148# define _(x) x
149#else
150# define _(x) (*dyn_libintl_gettext)(x)
151# define VIMPACKAGE "vim"
152# ifndef GETTEXT_DLL
153# define GETTEXT_DLL "libintl.dll"
Bram Moolenaar271273c2016-02-21 20:30:22 +0100154# define GETTEXT_DLL_ALT "libintl-8.dll"
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000155# endif
156
157// Dummy functions
158static char *null_libintl_gettext(const char *);
159static char *null_libintl_textdomain(const char *);
160static char *null_libintl_bindtextdomain(const char *, const char *);
161static int dyn_libintl_init(char *dir);
162static void dyn_libintl_end(void);
163
Bram Moolenaarcf839732011-08-10 16:31:23 +0200164static wchar_t *oldenv = NULL;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000165static HINSTANCE hLibintlDLL = 0;
166static char *(*dyn_libintl_gettext)(const char *) = null_libintl_gettext;
167static char *(*dyn_libintl_textdomain)(const char *) = null_libintl_textdomain;
168static char *(*dyn_libintl_bindtextdomain)(const char *, const char *)
169 = null_libintl_bindtextdomain;
170
171//
172// Attempt to load libintl.dll. If it doesn't work, use dummy functions.
173// "dir" is the directory where the libintl.dll might be.
174// Return 1 for success, 0 for failure.
175//
176 static int
177dyn_libintl_init(char *dir)
178{
179 int i;
180 static struct
181 {
182 char *name;
183 FARPROC *ptr;
184 } libintl_entry[] =
185 {
Bram Moolenaar7baa45d2007-08-18 15:00:42 +0000186 {(char *)"gettext", (FARPROC*)&dyn_libintl_gettext},
187 {(char *)"textdomain", (FARPROC*)&dyn_libintl_textdomain},
188 {(char *)"bindtextdomain", (FARPROC*)&dyn_libintl_bindtextdomain},
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000189 {NULL, NULL}
190 };
Bram Moolenaar271273c2016-02-21 20:30:22 +0100191 DWORD len, len2;
192 LPWSTR buf = NULL;
193 LPWSTR buf2 = NULL;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000194
195 // No need to initialize twice.
196 if (hLibintlDLL)
197 return 1;
198
Bram Moolenaar6199d432017-10-14 19:05:44 +0200199 // Load gettext library from $VIMRUNTIME\GvimExt{64,32} directory.
Bram Moolenaar271273c2016-02-21 20:30:22 +0100200 // Add the directory to $PATH temporarily.
201 len = GetEnvironmentVariableW(L"PATH", NULL, 0);
202 len2 = MAX_PATH + 1 + len;
203 buf = (LPWSTR)malloc(len * sizeof(WCHAR));
204 buf2 = (LPWSTR)malloc(len2 * sizeof(WCHAR));
205 if (buf != NULL && buf2 != NULL)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000206 {
Bram Moolenaar271273c2016-02-21 20:30:22 +0100207 GetEnvironmentVariableW(L"PATH", buf, len);
Bram Moolenaar6199d432017-10-14 19:05:44 +0200208#ifdef _WIN64
209 _snwprintf(buf2, len2, L"%S\\GvimExt64;%s", dir, buf);
210#else
211 _snwprintf(buf2, len2, L"%S\\GvimExt32;%s", dir, buf);
212#endif
Bram Moolenaar271273c2016-02-21 20:30:22 +0100213 SetEnvironmentVariableW(L"PATH", buf2);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000214 hLibintlDLL = LoadLibrary(GETTEXT_DLL);
Bram Moolenaar271273c2016-02-21 20:30:22 +0100215#ifdef GETTEXT_DLL_ALT
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000216 if (!hLibintlDLL)
Bram Moolenaar271273c2016-02-21 20:30:22 +0100217 hLibintlDLL = LoadLibrary(GETTEXT_DLL_ALT);
218#endif
219 SetEnvironmentVariableW(L"PATH", buf);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000220 }
Bram Moolenaar271273c2016-02-21 20:30:22 +0100221 free(buf);
222 free(buf2);
223 if (!hLibintlDLL)
224 return 0;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000225
226 // Get the addresses of the functions we need.
227 for (i = 0; libintl_entry[i].name != NULL
228 && libintl_entry[i].ptr != NULL; ++i)
229 {
230 if ((*libintl_entry[i].ptr = GetProcAddress(hLibintlDLL,
231 libintl_entry[i].name)) == NULL)
232 {
233 dyn_libintl_end();
234 return 0;
235 }
236 }
237 return 1;
238}
239
240 static void
241dyn_libintl_end(void)
242{
243 if (hLibintlDLL)
244 FreeLibrary(hLibintlDLL);
245 hLibintlDLL = NULL;
246 dyn_libintl_gettext = null_libintl_gettext;
247 dyn_libintl_textdomain = null_libintl_textdomain;
248 dyn_libintl_bindtextdomain = null_libintl_bindtextdomain;
249}
250
251 static char *
252null_libintl_gettext(const char *msgid)
253{
254 return (char *)msgid;
255}
256
257 static char *
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000258null_libintl_bindtextdomain(const char * /* domainname */, const char * /* dirname */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000259{
260 return NULL;
261}
262
263 static char *
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000264null_libintl_textdomain(const char* /* domainname */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000265{
266 return NULL;
267}
268
269//
270// Setup for translating strings.
271//
272 static void
273dyn_gettext_load(void)
274{
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000275 char szBuff[BUFSIZE];
276 char szLang[BUFSIZE];
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000277 DWORD len;
278 HKEY keyhandle;
279 int gotlang = 0;
280
281 strcpy(szLang, "LANG=");
282
283 // First try getting the language from the registry, this can be
284 // used to overrule the system language.
285 if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, "Software\\Vim\\Gvim", 0,
286 KEY_READ, &keyhandle) == ERROR_SUCCESS)
287 {
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000288 len = BUFSIZE;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000289 if (RegQueryValueEx(keyhandle, "lang", 0, NULL, (BYTE*)szBuff, &len)
290 == ERROR_SUCCESS)
291 {
292 szBuff[len] = 0;
293 strcat(szLang, szBuff);
294 gotlang = 1;
295 }
296 RegCloseKey(keyhandle);
297 }
298
299 if (!gotlang && getenv("LANG") == NULL)
300 {
301 // Get the language from the system.
302 // Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
303 // LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
304 // only the first two.
305 len = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000306 (LPTSTR)szBuff, BUFSIZE);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000307 if (len >= 2 && _strnicmp(szBuff, "en", 2) != 0)
308 {
309 // There are a few exceptions (probably more)
310 if (_strnicmp(szBuff, "cht", 3) == 0
311 || _strnicmp(szBuff, "zht", 3) == 0)
312 strcpy(szBuff, "zh_TW");
313 else if (_strnicmp(szBuff, "chs", 3) == 0
314 || _strnicmp(szBuff, "zhc", 3) == 0)
315 strcpy(szBuff, "zh_CN");
316 else if (_strnicmp(szBuff, "jp", 2) == 0)
317 strcpy(szBuff, "ja");
318 else
319 szBuff[2] = 0; // truncate to two-letter code
320 strcat(szLang, szBuff);
321 gotlang = 1;
322 }
323 }
324 if (gotlang)
325 putenv(szLang);
326
327 // Try to locate the runtime files. The path is used to find libintl.dll
328 // and the vim.mo files.
329 getRuntimeDir(szBuff);
330 if (szBuff[0] != 0)
331 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000332 len = (DWORD)strlen(szBuff);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000333 if (dyn_libintl_init(szBuff))
334 {
335 strcpy(szBuff + len, "lang");
336
337 (*dyn_libintl_bindtextdomain)(VIMPACKAGE, szBuff);
338 (*dyn_libintl_textdomain)(VIMPACKAGE);
339 }
340 }
341}
342
343 static void
344dyn_gettext_free(void)
345{
346 dyn_libintl_end();
347}
348#endif // FEAT_GETTEXT
349
350//
351// Global variables
352//
353UINT g_cRefThisDll = 0; // Reference count of this DLL.
354HINSTANCE g_hmodThisDll = NULL; // Handle to this DLL itself.
355
356
357//---------------------------------------------------------------------------
358// DllMain
359//---------------------------------------------------------------------------
360extern "C" int APIENTRY
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000361DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /* lpReserved */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000362{
363 switch (dwReason)
364 {
365 case DLL_PROCESS_ATTACH:
366 // Extension DLL one-time initialization
367 g_hmodThisDll = hInstance;
368 break;
369
370 case DLL_PROCESS_DETACH:
371 break;
372 }
373
374 return 1; // ok
375}
376
377 static void
378inc_cRefThisDLL()
379{
380#ifdef FEAT_GETTEXT
Bram Moolenaarcf839732011-08-10 16:31:23 +0200381 if (g_cRefThisDll == 0) {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000382 dyn_gettext_load();
Bram Moolenaarcf839732011-08-10 16:31:23 +0200383 oldenv = GetEnvironmentStringsW();
384 }
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000385#endif
386 InterlockedIncrement((LPLONG)&g_cRefThisDll);
387}
388
389 static void
390dec_cRefThisDLL()
391{
392#ifdef FEAT_GETTEXT
Bram Moolenaarcf839732011-08-10 16:31:23 +0200393 if (InterlockedDecrement((LPLONG)&g_cRefThisDll) == 0) {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000394 dyn_gettext_free();
Bram Moolenaarcf839732011-08-10 16:31:23 +0200395 if (oldenv != NULL) {
396 FreeEnvironmentStringsW(oldenv);
397 oldenv = NULL;
398 }
399 }
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000400#else
401 InterlockedDecrement((LPLONG)&g_cRefThisDll);
402#endif
403}
404
405//---------------------------------------------------------------------------
406// DllCanUnloadNow
407//---------------------------------------------------------------------------
408
409STDAPI DllCanUnloadNow(void)
410{
411 return (g_cRefThisDll == 0 ? S_OK : S_FALSE);
412}
413
414STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppvOut)
415{
416 *ppvOut = NULL;
417
418 if (IsEqualIID(rclsid, CLSID_ShellExtension))
419 {
420 CShellExtClassFactory *pcf = new CShellExtClassFactory;
421
422 return pcf->QueryInterface(riid, ppvOut);
423 }
424
425 return CLASS_E_CLASSNOTAVAILABLE;
426}
427
428CShellExtClassFactory::CShellExtClassFactory()
429{
430 m_cRef = 0L;
431
432 inc_cRefThisDLL();
433}
434
435CShellExtClassFactory::~CShellExtClassFactory()
436{
437 dec_cRefThisDLL();
438}
439
440STDMETHODIMP CShellExtClassFactory::QueryInterface(REFIID riid,
441 LPVOID FAR *ppv)
442{
443 *ppv = NULL;
444
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200445 // any interface on this object is the object pointer
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000446
447 if (IsEqualIID(riid, IID_IUnknown) || IsEqualIID(riid, IID_IClassFactory))
448 {
449 *ppv = (LPCLASSFACTORY)this;
450
451 AddRef();
452
453 return NOERROR;
454 }
455
456 return E_NOINTERFACE;
457}
458
459STDMETHODIMP_(ULONG) CShellExtClassFactory::AddRef()
460{
461 return InterlockedIncrement((LPLONG)&m_cRef);
462}
463
464STDMETHODIMP_(ULONG) CShellExtClassFactory::Release()
465{
466 if (InterlockedDecrement((LPLONG)&m_cRef))
467 return m_cRef;
468
469 delete this;
470
471 return 0L;
472}
473
474STDMETHODIMP CShellExtClassFactory::CreateInstance(LPUNKNOWN pUnkOuter,
475 REFIID riid,
476 LPVOID *ppvObj)
477{
478 *ppvObj = NULL;
479
480 // Shell extensions typically don't support aggregation (inheritance)
481
482 if (pUnkOuter)
483 return CLASS_E_NOAGGREGATION;
484
485 // Create the main shell extension object. The shell will then call
486 // QueryInterface with IID_IShellExtInit--this is how shell extensions are
487 // initialized.
488
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200489 LPCSHELLEXT pShellExt = new CShellExt(); // create the CShellExt object
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000490
491 if (NULL == pShellExt)
492 return E_OUTOFMEMORY;
493
494 return pShellExt->QueryInterface(riid, ppvObj);
495}
496
497
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000498STDMETHODIMP CShellExtClassFactory::LockServer(BOOL /* fLock */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000499{
500 return NOERROR;
501}
502
503// *********************** CShellExt *************************
504CShellExt::CShellExt()
505{
506 m_cRef = 0L;
507 m_pDataObj = NULL;
508
509 inc_cRefThisDLL();
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200510
511 LoadMenuIcon();
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000512}
513
514CShellExt::~CShellExt()
515{
516 if (m_pDataObj)
517 m_pDataObj->Release();
518
519 dec_cRefThisDLL();
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200520
521 if (m_hVimIconBitmap)
522 DeleteObject(m_hVimIconBitmap);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000523}
524
525STDMETHODIMP CShellExt::QueryInterface(REFIID riid, LPVOID FAR *ppv)
526{
527 *ppv = NULL;
528
529 if (IsEqualIID(riid, IID_IShellExtInit) || IsEqualIID(riid, IID_IUnknown))
530 {
531 *ppv = (LPSHELLEXTINIT)this;
532 }
533 else if (IsEqualIID(riid, IID_IContextMenu))
534 {
535 *ppv = (LPCONTEXTMENU)this;
536 }
537
538 if (*ppv)
539 {
540 AddRef();
541
542 return NOERROR;
543 }
544
545 return E_NOINTERFACE;
546}
547
548STDMETHODIMP_(ULONG) CShellExt::AddRef()
549{
550 return InterlockedIncrement((LPLONG)&m_cRef);
551}
552
553STDMETHODIMP_(ULONG) CShellExt::Release()
554{
555
556 if (InterlockedDecrement((LPLONG)&m_cRef))
557 return m_cRef;
558
559 delete this;
560
561 return 0L;
562}
563
564
565//
566// FUNCTION: CShellExt::Initialize(LPCITEMIDLIST, LPDATAOBJECT, HKEY)
567//
568// PURPOSE: Called by the shell when initializing a context menu or property
569// sheet extension.
570//
571// PARAMETERS:
572// pIDFolder - Specifies the parent folder
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200573// pDataObj - Specifies the set of items selected in that folder.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000574// hRegKey - Specifies the type of the focused item in the selection.
575//
576// RETURN VALUE:
577//
578// NOERROR in all cases.
579//
580// COMMENTS: Note that at the time this function is called, we don't know
581// (or care) what type of shell extension is being initialized.
582// It could be a context menu or a property sheet.
583//
584
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000585STDMETHODIMP CShellExt::Initialize(LPCITEMIDLIST /* pIDFolder */,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000586 LPDATAOBJECT pDataObj,
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000587 HKEY /* hRegKey */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000588{
589 // Initialize can be called more than once
590 if (m_pDataObj)
591 m_pDataObj->Release();
592
593 // duplicate the object pointer and registry handle
594
595 if (pDataObj)
596 {
597 m_pDataObj = pDataObj;
598 pDataObj->AddRef();
599 }
600
601 return NOERROR;
602}
603
604
605//
606// FUNCTION: CShellExt::QueryContextMenu(HMENU, UINT, UINT, UINT, UINT)
607//
608// PURPOSE: Called by the shell just before the context menu is displayed.
609// This is where you add your specific menu items.
610//
611// PARAMETERS:
612// hMenu - Handle to the context menu
613// indexMenu - Index of where to begin inserting menu items
614// idCmdFirst - Lowest value for new menu ID's
615// idCmtLast - Highest value for new menu ID's
616// uFlags - Specifies the context of the menu event
617//
618// RETURN VALUE:
619//
620//
621// COMMENTS:
622//
623
624STDMETHODIMP CShellExt::QueryContextMenu(HMENU hMenu,
625 UINT indexMenu,
626 UINT idCmdFirst,
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000627 UINT /* idCmdLast */,
628 UINT /* uFlags */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000629{
630 UINT idCmd = idCmdFirst;
631
632 hres = m_pDataObj->GetData(&fmte, &medium);
633 if (medium.hGlobal)
634 cbFiles = DragQueryFile((HDROP)medium.hGlobal, (UINT)-1, 0, 0);
635
636 // InsertMenu(hMenu, indexMenu++, MF_SEPARATOR|MF_BYPOSITION, 0, NULL);
637
638 // Initialize m_cntOfHWnd to 0
639 m_cntOfHWnd = 0;
Bram Moolenaarce35c882011-07-20 17:27:25 +0200640
641 HKEY keyhandle;
642 bool showExisting = true;
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200643 bool showIcons = true;
Bram Moolenaarce35c882011-07-20 17:27:25 +0200644
645 // Check whether "Edit with existing Vim" entries are disabled.
646 if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, "Software\\Vim\\Gvim", 0,
647 KEY_READ, &keyhandle) == ERROR_SUCCESS)
648 {
649 if (RegQueryValueEx(keyhandle, "DisableEditWithExisting", 0, NULL,
650 NULL, NULL) == ERROR_SUCCESS)
651 showExisting = false;
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200652 if (RegQueryValueEx(keyhandle, "DisableContextMenuIcons", 0, NULL,
653 NULL, NULL) == ERROR_SUCCESS)
654 showIcons = false;
Bram Moolenaarce35c882011-07-20 17:27:25 +0200655 RegCloseKey(keyhandle);
656 }
657
658 // Retrieve all the vim instances, unless disabled.
659 if (showExisting)
660 EnumWindows(EnumWindowsProc, (LPARAM)this);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000661
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200662 MENUITEMINFO mii = { sizeof(MENUITEMINFO) };
663 mii.fMask = MIIM_STRING | MIIM_ID;
664 if (showIcons)
665 {
666 mii.fMask |= MIIM_BITMAP;
667 mii.hbmpItem = m_hVimIconBitmap;
668 }
669
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000670 if (cbFiles > 1)
671 {
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200672 mii.wID = idCmd++;
673 mii.dwTypeData = _("Edit with &multiple Vims");
674 mii.cch = lstrlen(mii.dwTypeData);
675 InsertMenuItem(hMenu, indexMenu++, TRUE, &mii);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000676
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200677 mii.wID = idCmd++;
678 mii.dwTypeData = _("Edit with single &Vim");
679 mii.cch = lstrlen(mii.dwTypeData);
680 InsertMenuItem(hMenu, indexMenu++, TRUE, &mii);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000681
682 if (cbFiles <= 4)
683 {
684 // Can edit up to 4 files in diff mode
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200685 mii.wID = idCmd++;
686 mii.dwTypeData = _("Diff with Vim");
687 mii.cch = lstrlen(mii.dwTypeData);
688 InsertMenuItem(hMenu, indexMenu++, TRUE, &mii);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000689 m_edit_existing_off = 3;
690 }
691 else
692 m_edit_existing_off = 2;
693
694 }
695 else
696 {
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200697 mii.wID = idCmd++;
698 mii.dwTypeData = _("Edit with &Vim");
699 mii.cch = lstrlen(mii.dwTypeData);
700 InsertMenuItem(hMenu, indexMenu++, TRUE, &mii);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000701 m_edit_existing_off = 1;
702 }
703
Bram Moolenaarbf9679a2018-10-25 11:25:53 +0200704 HMENU hSubMenu = NULL;
705 if (m_cntOfHWnd > 1)
706 {
707 hSubMenu = CreatePopupMenu();
708 mii.fMask |= MIIM_SUBMENU;
709 mii.wID = idCmd;
710 mii.dwTypeData = _("Edit with existing Vim");
711 mii.cch = lstrlen(mii.dwTypeData);
712 mii.hSubMenu = hSubMenu;
713 InsertMenuItem(hMenu, indexMenu++, TRUE, &mii);
714 mii.fMask = mii.fMask & ~MIIM_SUBMENU;
715 mii.hSubMenu = NULL;
716 }
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000717 // Now display all the vim instances
718 for (int i = 0; i < m_cntOfHWnd; i++)
719 {
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000720 char title[BUFSIZE];
721 char temp[BUFSIZE];
Bram Moolenaarbf9679a2018-10-25 11:25:53 +0200722 int index;
723 HMENU hmenu;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000724
725 // Obtain window title, continue if can not
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000726 if (GetWindowText(m_hWnd[i], title, BUFSIZE - 1) == 0)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000727 continue;
728 // Truncate the title before the path, keep the file name
729 char *pos = strchr(title, '(');
730 if (pos != NULL)
731 {
732 if (pos > title && pos[-1] == ' ')
733 --pos;
734 *pos = 0;
735 }
736 // Now concatenate
Bram Moolenaarbf9679a2018-10-25 11:25:53 +0200737 if (m_cntOfHWnd > 1)
738 temp[0] = '\0';
739 else
740 {
741 strncpy(temp, _("Edit with existing Vim - "), BUFSIZE - 1);
742 temp[BUFSIZE - 1] = '\0';
743 }
Bram Moolenaardc7e00e2009-09-11 11:26:56 +0000744 strncat(temp, title, BUFSIZE - 1 - strlen(temp));
745 temp[BUFSIZE - 1] = '\0';
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200746
747 mii.wID = idCmd++;
748 mii.dwTypeData = temp;
749 mii.cch = lstrlen(mii.dwTypeData);
Bram Moolenaarbf9679a2018-10-25 11:25:53 +0200750 if (m_cntOfHWnd > 1)
751 {
752 hmenu = hSubMenu;
753 index = i;
754 }
755 else
756 {
757 hmenu = hMenu;
758 index = indexMenu++;
759 }
760 InsertMenuItem(hmenu, index, TRUE, &mii);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000761 }
762 // InsertMenu(hMenu, indexMenu++, MF_SEPARATOR|MF_BYPOSITION, 0, NULL);
763
764 // Must return number of menu items we added.
765 return ResultFromShort(idCmd-idCmdFirst);
766}
767
768//
769// FUNCTION: CShellExt::InvokeCommand(LPCMINVOKECOMMANDINFO)
770//
771// PURPOSE: Called by the shell after the user has selected on of the
772// menu items that was added in QueryContextMenu().
773//
774// PARAMETERS:
775// lpcmi - Pointer to an CMINVOKECOMMANDINFO structure
776//
777// RETURN VALUE:
778//
779//
780// COMMENTS:
781//
782
783STDMETHODIMP CShellExt::InvokeCommand(LPCMINVOKECOMMANDINFO lpcmi)
784{
785 HRESULT hr = E_INVALIDARG;
786
787 // If HIWORD(lpcmi->lpVerb) then we have been called programmatically
788 // and lpVerb is a command that should be invoked. Otherwise, the shell
789 // has called us, and LOWORD(lpcmi->lpVerb) is the menu ID the user has
790 // selected. Actually, it's (menu ID - idCmdFirst) from QueryContextMenu().
791 if (!HIWORD(lpcmi->lpVerb))
792 {
793 UINT idCmd = LOWORD(lpcmi->lpVerb);
794
795 if (idCmd >= m_edit_existing_off)
796 {
797 // Existing with vim instance
798 hr = PushToWindow(lpcmi->hwnd,
799 lpcmi->lpDirectory,
800 lpcmi->lpVerb,
801 lpcmi->lpParameters,
802 lpcmi->nShow,
803 idCmd - m_edit_existing_off);
804 }
805 else
806 {
807 switch (idCmd)
808 {
809 case 0:
810 hr = InvokeGvim(lpcmi->hwnd,
811 lpcmi->lpDirectory,
812 lpcmi->lpVerb,
813 lpcmi->lpParameters,
814 lpcmi->nShow);
815 break;
816 case 1:
817 hr = InvokeSingleGvim(lpcmi->hwnd,
818 lpcmi->lpDirectory,
819 lpcmi->lpVerb,
820 lpcmi->lpParameters,
821 lpcmi->nShow,
822 0);
823 break;
824 case 2:
825 hr = InvokeSingleGvim(lpcmi->hwnd,
826 lpcmi->lpDirectory,
827 lpcmi->lpVerb,
828 lpcmi->lpParameters,
829 lpcmi->nShow,
830 1);
831 break;
832 }
833 }
834 }
835 return hr;
836}
837
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000838STDMETHODIMP CShellExt::PushToWindow(HWND /* hParent */,
839 LPCSTR /* pszWorkingDir */,
840 LPCSTR /* pszCmd */,
841 LPCSTR /* pszParam */,
842 int /* iShowCmd */,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000843 int idHWnd)
844{
845 HWND hWnd = m_hWnd[idHWnd];
846
847 // Show and bring vim instance to foreground
848 if (IsIconic(hWnd) != 0)
849 ShowWindow(hWnd, SW_RESTORE);
850 else
851 ShowWindow(hWnd, SW_SHOW);
852 SetForegroundWindow(hWnd);
853
854 // Post the selected files to the vim instance
855 PostMessage(hWnd, WM_DROPFILES, (WPARAM)medium.hGlobal, 0);
856
857 return NOERROR;
858}
859
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000860STDMETHODIMP CShellExt::GetCommandString(UINT_PTR /* idCmd */,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000861 UINT uFlags,
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000862 UINT FAR * /* reserved */,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000863 LPSTR pszName,
864 UINT cchMax)
865{
866 if (uFlags == GCS_HELPTEXT && cchMax > 35)
867 lstrcpy(pszName, _("Edits the selected file(s) with Vim"));
868
869 return NOERROR;
870}
871
872BOOL CALLBACK CShellExt::EnumWindowsProc(HWND hWnd, LPARAM lParam)
873{
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000874 char temp[BUFSIZE];
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000875
876 // First do a bunch of check
877 // No invisible window
878 if (!IsWindowVisible(hWnd)) return TRUE;
879 // No child window ???
880 // if (GetParent(hWnd)) return TRUE;
881 // Class name should be Vim, if failed to get class name, return
882 if (GetClassName(hWnd, temp, sizeof(temp)) == 0)
883 return TRUE;
884 // Compare class name to that of vim, if not, return
885 if (_strnicmp(temp, "vim", sizeof("vim")) != 0)
886 return TRUE;
887 // First check if the number of vim instance exceeds MAX_HWND
888 CShellExt *cs = (CShellExt*) lParam;
889 if (cs->m_cntOfHWnd >= MAX_HWND) return TRUE;
890 // Now we get the vim window, put it into some kind of array
891 cs->m_hWnd[cs->m_cntOfHWnd] = hWnd;
892 cs->m_cntOfHWnd ++;
893
894 return TRUE; // continue enumeration (otherwise this would be false)
895}
896
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200897BOOL CShellExt::LoadMenuIcon()
898{
899 char vimExeFile[BUFSIZE];
900 getGvimName(vimExeFile, 1);
901 if (vimExeFile[0] == '\0')
902 return FALSE;
903 HICON hVimIcon;
904 if (ExtractIconEx(vimExeFile, 0, NULL, &hVimIcon, 1) == 0)
905 return FALSE;
906 m_hVimIconBitmap = IconToBitmap(hVimIcon,
907 GetSysColorBrush(COLOR_MENU),
908 GetSystemMetrics(SM_CXSMICON),
909 GetSystemMetrics(SM_CYSMICON));
910 return TRUE;
911}
912
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000913 static char *
914searchpath(char *name)
915{
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000916 static char widename[2 * BUFSIZE];
917 static char location[2 * BUFSIZE + 2];
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000918
919 // There appears to be a bug in FindExecutableA() on Windows NT.
920 // Use FindExecutableW() instead...
Bram Moolenaar6199d432017-10-14 19:05:44 +0200921 MultiByteToWideChar(CP_ACP, 0, (LPCSTR)name, -1,
922 (LPWSTR)widename, BUFSIZE);
923 if (FindExecutableW((LPCWSTR)widename, (LPCWSTR)"",
924 (LPWSTR)location) > (HINSTANCE)32)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000925 {
Bram Moolenaar6199d432017-10-14 19:05:44 +0200926 WideCharToMultiByte(CP_ACP, 0, (LPWSTR)location, -1,
927 (LPSTR)widename, 2 * BUFSIZE, NULL, NULL);
928 return widename;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000929 }
Bram Moolenaar7baa45d2007-08-18 15:00:42 +0000930 return (char *)"";
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000931}
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000932
933STDMETHODIMP CShellExt::InvokeGvim(HWND hParent,
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000934 LPCSTR /* pszWorkingDir */,
935 LPCSTR /* pszCmd */,
936 LPCSTR /* pszParam */,
937 int /* iShowCmd */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000938{
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200939 wchar_t m_szFileUserClickedOn[BUFSIZE];
940 wchar_t cmdStrW[BUFSIZE];
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000941 UINT i;
942
943 for (i = 0; i < cbFiles; i++)
944 {
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200945 DragQueryFileW((HDROP)medium.hGlobal,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000946 i,
947 m_szFileUserClickedOn,
948 sizeof(m_szFileUserClickedOn));
949
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200950 getGvimInvocationW(cmdStrW);
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200951 wcscat(cmdStrW, L" \"");
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000952
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200953 if ((wcslen(cmdStrW) + wcslen(m_szFileUserClickedOn) + 2) < BUFSIZE)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000954 {
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200955 wcscat(cmdStrW, m_szFileUserClickedOn);
956 wcscat(cmdStrW, L"\"");
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000957
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200958 STARTUPINFOW si;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000959 PROCESS_INFORMATION pi;
960
961 ZeroMemory(&si, sizeof(si));
962 si.cb = sizeof(si);
963
964 // Start the child process.
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200965 if (!CreateProcessW(NULL, // No module name (use command line).
966 cmdStrW, // Command line.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000967 NULL, // Process handle not inheritable.
968 NULL, // Thread handle not inheritable.
969 FALSE, // Set handle inheritance to FALSE.
Bram Moolenaarcf839732011-08-10 16:31:23 +0200970 oldenv == NULL ? 0 : CREATE_UNICODE_ENVIRONMENT,
971 oldenv, // Use unmodified environment block.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000972 NULL, // Use parent's starting directory.
973 &si, // Pointer to STARTUPINFO structure.
974 &pi) // Pointer to PROCESS_INFORMATION structure.
975 )
976 {
977 MessageBox(
978 hParent,
979 _("Error creating process: Check if gvim is in your path!"),
980 _("gvimext.dll error"),
981 MB_OK);
982 }
983 else
984 {
985 CloseHandle( pi.hProcess );
986 CloseHandle( pi.hThread );
987 }
988 }
989 else
990 {
991 MessageBox(
992 hParent,
993 _("Path length too long!"),
994 _("gvimext.dll error"),
995 MB_OK);
996 }
997 }
998
999 return NOERROR;
1000}
1001
1002
1003STDMETHODIMP CShellExt::InvokeSingleGvim(HWND hParent,
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00001004 LPCSTR /* pszWorkingDir */,
1005 LPCSTR /* pszCmd */,
1006 LPCSTR /* pszParam */,
1007 int /* iShowCmd */,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001008 int useDiff)
1009{
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001010 wchar_t m_szFileUserClickedOn[BUFSIZE];
1011 wchar_t *cmdStrW;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001012 size_t cmdlen;
1013 size_t len;
1014 UINT i;
1015
Bram Moolenaare759a7a2005-07-12 22:50:18 +00001016 cmdlen = BUFSIZE;
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001017 cmdStrW = (wchar_t *) malloc(cmdlen * sizeof(wchar_t));
Bram Moolenaar06d4c4c2018-12-14 19:20:02 +01001018 if (cmdStrW == NULL)
Bram Moolenaar142a9752018-12-14 19:54:39 +01001019 return E_FAIL;
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +02001020 getGvimInvocationW(cmdStrW);
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001021
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001022 if (useDiff)
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001023 wcscat(cmdStrW, L" -d");
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001024 for (i = 0; i < cbFiles; i++)
1025 {
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001026 DragQueryFileW((HDROP)medium.hGlobal,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001027 i,
1028 m_szFileUserClickedOn,
1029 sizeof(m_szFileUserClickedOn));
1030
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001031 len = wcslen(cmdStrW) + wcslen(m_szFileUserClickedOn) + 4;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001032 if (len > cmdlen)
1033 {
Bram Moolenaare759a7a2005-07-12 22:50:18 +00001034 cmdlen = len + BUFSIZE;
Bram Moolenaar06d4c4c2018-12-14 19:20:02 +01001035 wchar_t *cmdStrW_new = (wchar_t *)realloc(cmdStrW, cmdlen * sizeof(wchar_t));
1036 if (cmdStrW_new == NULL)
Bram Moolenaar142a9752018-12-14 19:54:39 +01001037 {
1038 free(cmdStrW);
1039 return E_FAIL;
1040 }
Bram Moolenaar06d4c4c2018-12-14 19:20:02 +01001041 cmdStrW = cmdStrW_new;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001042 }
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001043 wcscat(cmdStrW, L" \"");
1044 wcscat(cmdStrW, m_szFileUserClickedOn);
1045 wcscat(cmdStrW, L"\"");
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001046 }
1047
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001048 STARTUPINFOW si;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001049 PROCESS_INFORMATION pi;
1050
1051 ZeroMemory(&si, sizeof(si));
1052 si.cb = sizeof(si);
1053
1054 // Start the child process.
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001055 if (!CreateProcessW(NULL, // No module name (use command line).
1056 cmdStrW, // Command line.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001057 NULL, // Process handle not inheritable.
1058 NULL, // Thread handle not inheritable.
1059 FALSE, // Set handle inheritance to FALSE.
Bram Moolenaarcf839732011-08-10 16:31:23 +02001060 oldenv == NULL ? 0 : CREATE_UNICODE_ENVIRONMENT,
1061 oldenv, // Use unmodified environment block.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001062 NULL, // Use parent's starting directory.
1063 &si, // Pointer to STARTUPINFO structure.
1064 &pi) // Pointer to PROCESS_INFORMATION structure.
1065 )
1066 {
1067 MessageBox(
1068 hParent,
1069 _("Error creating process: Check if gvim is in your path!"),
1070 _("gvimext.dll error"),
1071 MB_OK);
1072 }
1073 else
1074 {
1075 CloseHandle(pi.hProcess);
1076 CloseHandle(pi.hThread);
1077 }
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001078 free(cmdStrW);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001079
1080 return NOERROR;
1081}