blob: 64c5d1339f8501d2a21cf958a3b8a9d1aa54f75f [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
19#ifdef __BORLANDC__
20# include <dir.h>
21# ifndef _strnicmp
22# define _strnicmp(a, b, c) strnicmp((a), (b), (c))
23# endif
24#else
25static char *searchpath(char *name);
26#endif
27
28// Always get an error while putting the following stuff to the
29// gvimext.h file as class protected variables, give up and
30// declare them as global stuff
31FORMATETC fmte = {CF_HDROP,
32 (DVTARGETDEVICE FAR *)NULL,
33 DVASPECT_CONTENT,
34 -1,
35 TYMED_HGLOBAL
36 };
37STGMEDIUM medium;
38HRESULT hres = 0;
39UINT cbFiles = 0;
40
Bram Moolenaar6199d432017-10-14 19:05:44 +020041/* The buffers size used to be MAX_PATH (260 bytes), but that's not always
Bram Moolenaare759a7a2005-07-12 22:50:18 +000042 * enough */
43#define BUFSIZE 1100
44
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000045//
46// Get the name of the Gvim executable to use, with the path.
47// When "runtime" is non-zero, we were called to find the runtime directory.
Bram Moolenaare759a7a2005-07-12 22:50:18 +000048// Returns the path in name[BUFSIZE]. It's empty when it fails.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000049//
50 static void
51getGvimName(char *name, int runtime)
52{
53 HKEY keyhandle;
54 DWORD hlen;
55
56 // Get the location of gvim from the registry.
57 name[0] = 0;
58 if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, "Software\\Vim\\Gvim", 0,
59 KEY_READ, &keyhandle) == ERROR_SUCCESS)
60 {
Bram Moolenaare759a7a2005-07-12 22:50:18 +000061 hlen = BUFSIZE;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000062 if (RegQueryValueEx(keyhandle, "path", 0, NULL, (BYTE *)name, &hlen)
63 != ERROR_SUCCESS)
64 name[0] = 0;
65 else
66 name[hlen] = 0;
67 RegCloseKey(keyhandle);
68 }
69
70 // Registry didn't work, use the search path.
71 if (name[0] == 0)
Bram Moolenaar7baa45d2007-08-18 15:00:42 +000072 strcpy(name, searchpath((char *)"gvim.exe"));
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000073
74 if (!runtime)
75 {
76 // Only when looking for the executable, not the runtime dir, we can
77 // search for the batch file or a name without a path.
78 if (name[0] == 0)
Bram Moolenaar7baa45d2007-08-18 15:00:42 +000079 strcpy(name, searchpath((char *)"gvim.bat"));
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000080 if (name[0] == 0)
81 strcpy(name, "gvim"); // finds gvim.bat or gvim.exe
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000082 }
83}
84
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +020085 static void
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +020086getGvimInvocation(char *name, int runtime)
87{
88 getGvimName(name, runtime);
89 // avoid that Vim tries to expand wildcards in the file names
90 strcat(name, " --literal");
91}
92
93 static void
94getGvimInvocationW(wchar_t *nameW)
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +020095{
96 char *name;
97
98 name = (char *)malloc(BUFSIZE);
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +020099 getGvimInvocation(name, 0);
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200100 mbstowcs(nameW, name, BUFSIZE);
101 free(name);
102}
103
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000104//
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000105// Get the Vim runtime directory into buf[BUFSIZE].
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000106// The result is empty when it failed.
107// When it works, the path ends in a slash or backslash.
108//
109 static void
110getRuntimeDir(char *buf)
111{
112 int idx;
113
114 getGvimName(buf, 1);
115 if (buf[0] != 0)
116 {
117 // When no path found, use the search path to expand it.
118 if (strchr(buf, '/') == NULL && strchr(buf, '\\') == NULL)
119 strcpy(buf, searchpath(buf));
120
121 // remove "gvim.exe" from the end
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000122 for (idx = (int)strlen(buf) - 1; idx >= 0; idx--)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000123 if (buf[idx] == '\\' || buf[idx] == '/')
124 {
125 buf[idx + 1] = 0;
126 break;
127 }
128 }
129}
130
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200131HBITMAP IconToBitmap(HICON hIcon, HBRUSH hBackground, int width, int height)
132{
133 HDC hDC = GetDC(NULL);
134 HDC hMemDC = CreateCompatibleDC(hDC);
135 HBITMAP hMemBmp = CreateCompatibleBitmap(hDC, width, height);
136 HBITMAP hResultBmp = NULL;
137 HGDIOBJ hOrgBMP = SelectObject(hMemDC, hMemBmp);
138
139 DrawIconEx(hMemDC, 0, 0, hIcon, width, height, 0, hBackground, DI_NORMAL);
140
141 hResultBmp = hMemBmp;
142 hMemBmp = NULL;
143
144 SelectObject(hMemDC, hOrgBMP);
145 DeleteDC(hMemDC);
146 ReleaseDC(NULL, hDC);
147 DestroyIcon(hIcon);
148 return hResultBmp;
149}
150
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000151//
152// GETTEXT: translated messages and menu entries
153//
154#ifndef FEAT_GETTEXT
155# define _(x) x
156#else
157# define _(x) (*dyn_libintl_gettext)(x)
158# define VIMPACKAGE "vim"
159# ifndef GETTEXT_DLL
160# define GETTEXT_DLL "libintl.dll"
Bram Moolenaar271273c2016-02-21 20:30:22 +0100161# define GETTEXT_DLL_ALT "libintl-8.dll"
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000162# endif
163
164// Dummy functions
165static char *null_libintl_gettext(const char *);
166static char *null_libintl_textdomain(const char *);
167static char *null_libintl_bindtextdomain(const char *, const char *);
168static int dyn_libintl_init(char *dir);
169static void dyn_libintl_end(void);
170
Bram Moolenaarcf839732011-08-10 16:31:23 +0200171static wchar_t *oldenv = NULL;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000172static HINSTANCE hLibintlDLL = 0;
173static char *(*dyn_libintl_gettext)(const char *) = null_libintl_gettext;
174static char *(*dyn_libintl_textdomain)(const char *) = null_libintl_textdomain;
175static char *(*dyn_libintl_bindtextdomain)(const char *, const char *)
176 = null_libintl_bindtextdomain;
177
178//
179// Attempt to load libintl.dll. If it doesn't work, use dummy functions.
180// "dir" is the directory where the libintl.dll might be.
181// Return 1 for success, 0 for failure.
182//
183 static int
184dyn_libintl_init(char *dir)
185{
186 int i;
187 static struct
188 {
189 char *name;
190 FARPROC *ptr;
191 } libintl_entry[] =
192 {
Bram Moolenaar7baa45d2007-08-18 15:00:42 +0000193 {(char *)"gettext", (FARPROC*)&dyn_libintl_gettext},
194 {(char *)"textdomain", (FARPROC*)&dyn_libintl_textdomain},
195 {(char *)"bindtextdomain", (FARPROC*)&dyn_libintl_bindtextdomain},
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000196 {NULL, NULL}
197 };
Bram Moolenaar271273c2016-02-21 20:30:22 +0100198 DWORD len, len2;
199 LPWSTR buf = NULL;
200 LPWSTR buf2 = NULL;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000201
202 // No need to initialize twice.
203 if (hLibintlDLL)
204 return 1;
205
Bram Moolenaar6199d432017-10-14 19:05:44 +0200206 // Load gettext library from $VIMRUNTIME\GvimExt{64,32} directory.
Bram Moolenaar271273c2016-02-21 20:30:22 +0100207 // Add the directory to $PATH temporarily.
208 len = GetEnvironmentVariableW(L"PATH", NULL, 0);
209 len2 = MAX_PATH + 1 + len;
210 buf = (LPWSTR)malloc(len * sizeof(WCHAR));
211 buf2 = (LPWSTR)malloc(len2 * sizeof(WCHAR));
212 if (buf != NULL && buf2 != NULL)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000213 {
Bram Moolenaar271273c2016-02-21 20:30:22 +0100214 GetEnvironmentVariableW(L"PATH", buf, len);
Bram Moolenaar6199d432017-10-14 19:05:44 +0200215#ifdef _WIN64
216 _snwprintf(buf2, len2, L"%S\\GvimExt64;%s", dir, buf);
217#else
218 _snwprintf(buf2, len2, L"%S\\GvimExt32;%s", dir, buf);
219#endif
Bram Moolenaar271273c2016-02-21 20:30:22 +0100220 SetEnvironmentVariableW(L"PATH", buf2);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000221 hLibintlDLL = LoadLibrary(GETTEXT_DLL);
Bram Moolenaar271273c2016-02-21 20:30:22 +0100222#ifdef GETTEXT_DLL_ALT
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000223 if (!hLibintlDLL)
Bram Moolenaar271273c2016-02-21 20:30:22 +0100224 hLibintlDLL = LoadLibrary(GETTEXT_DLL_ALT);
225#endif
226 SetEnvironmentVariableW(L"PATH", buf);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000227 }
Bram Moolenaar271273c2016-02-21 20:30:22 +0100228 free(buf);
229 free(buf2);
230 if (!hLibintlDLL)
231 return 0;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000232
233 // Get the addresses of the functions we need.
234 for (i = 0; libintl_entry[i].name != NULL
235 && libintl_entry[i].ptr != NULL; ++i)
236 {
237 if ((*libintl_entry[i].ptr = GetProcAddress(hLibintlDLL,
238 libintl_entry[i].name)) == NULL)
239 {
240 dyn_libintl_end();
241 return 0;
242 }
243 }
244 return 1;
245}
246
247 static void
248dyn_libintl_end(void)
249{
250 if (hLibintlDLL)
251 FreeLibrary(hLibintlDLL);
252 hLibintlDLL = NULL;
253 dyn_libintl_gettext = null_libintl_gettext;
254 dyn_libintl_textdomain = null_libintl_textdomain;
255 dyn_libintl_bindtextdomain = null_libintl_bindtextdomain;
256}
257
258 static char *
259null_libintl_gettext(const char *msgid)
260{
261 return (char *)msgid;
262}
263
264 static char *
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000265null_libintl_bindtextdomain(const char * /* domainname */, const char * /* dirname */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000266{
267 return NULL;
268}
269
270 static char *
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000271null_libintl_textdomain(const char* /* domainname */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000272{
273 return NULL;
274}
275
276//
277// Setup for translating strings.
278//
279 static void
280dyn_gettext_load(void)
281{
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000282 char szBuff[BUFSIZE];
283 char szLang[BUFSIZE];
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000284 DWORD len;
285 HKEY keyhandle;
286 int gotlang = 0;
287
288 strcpy(szLang, "LANG=");
289
290 // First try getting the language from the registry, this can be
291 // used to overrule the system language.
292 if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, "Software\\Vim\\Gvim", 0,
293 KEY_READ, &keyhandle) == ERROR_SUCCESS)
294 {
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000295 len = BUFSIZE;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000296 if (RegQueryValueEx(keyhandle, "lang", 0, NULL, (BYTE*)szBuff, &len)
297 == ERROR_SUCCESS)
298 {
299 szBuff[len] = 0;
300 strcat(szLang, szBuff);
301 gotlang = 1;
302 }
303 RegCloseKey(keyhandle);
304 }
305
306 if (!gotlang && getenv("LANG") == NULL)
307 {
308 // Get the language from the system.
309 // Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
310 // LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
311 // only the first two.
312 len = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000313 (LPTSTR)szBuff, BUFSIZE);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000314 if (len >= 2 && _strnicmp(szBuff, "en", 2) != 0)
315 {
316 // There are a few exceptions (probably more)
317 if (_strnicmp(szBuff, "cht", 3) == 0
318 || _strnicmp(szBuff, "zht", 3) == 0)
319 strcpy(szBuff, "zh_TW");
320 else if (_strnicmp(szBuff, "chs", 3) == 0
321 || _strnicmp(szBuff, "zhc", 3) == 0)
322 strcpy(szBuff, "zh_CN");
323 else if (_strnicmp(szBuff, "jp", 2) == 0)
324 strcpy(szBuff, "ja");
325 else
326 szBuff[2] = 0; // truncate to two-letter code
327 strcat(szLang, szBuff);
328 gotlang = 1;
329 }
330 }
331 if (gotlang)
332 putenv(szLang);
333
334 // Try to locate the runtime files. The path is used to find libintl.dll
335 // and the vim.mo files.
336 getRuntimeDir(szBuff);
337 if (szBuff[0] != 0)
338 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000339 len = (DWORD)strlen(szBuff);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000340 if (dyn_libintl_init(szBuff))
341 {
342 strcpy(szBuff + len, "lang");
343
344 (*dyn_libintl_bindtextdomain)(VIMPACKAGE, szBuff);
345 (*dyn_libintl_textdomain)(VIMPACKAGE);
346 }
347 }
348}
349
350 static void
351dyn_gettext_free(void)
352{
353 dyn_libintl_end();
354}
355#endif // FEAT_GETTEXT
356
357//
358// Global variables
359//
360UINT g_cRefThisDll = 0; // Reference count of this DLL.
361HINSTANCE g_hmodThisDll = NULL; // Handle to this DLL itself.
362
363
364//---------------------------------------------------------------------------
365// DllMain
366//---------------------------------------------------------------------------
367extern "C" int APIENTRY
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000368DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID /* lpReserved */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000369{
370 switch (dwReason)
371 {
372 case DLL_PROCESS_ATTACH:
373 // Extension DLL one-time initialization
374 g_hmodThisDll = hInstance;
375 break;
376
377 case DLL_PROCESS_DETACH:
378 break;
379 }
380
381 return 1; // ok
382}
383
384 static void
385inc_cRefThisDLL()
386{
387#ifdef FEAT_GETTEXT
Bram Moolenaarcf839732011-08-10 16:31:23 +0200388 if (g_cRefThisDll == 0) {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000389 dyn_gettext_load();
Bram Moolenaarcf839732011-08-10 16:31:23 +0200390 oldenv = GetEnvironmentStringsW();
391 }
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000392#endif
393 InterlockedIncrement((LPLONG)&g_cRefThisDll);
394}
395
396 static void
397dec_cRefThisDLL()
398{
399#ifdef FEAT_GETTEXT
Bram Moolenaarcf839732011-08-10 16:31:23 +0200400 if (InterlockedDecrement((LPLONG)&g_cRefThisDll) == 0) {
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000401 dyn_gettext_free();
Bram Moolenaarcf839732011-08-10 16:31:23 +0200402 if (oldenv != NULL) {
403 FreeEnvironmentStringsW(oldenv);
404 oldenv = NULL;
405 }
406 }
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000407#else
408 InterlockedDecrement((LPLONG)&g_cRefThisDll);
409#endif
410}
411
412//---------------------------------------------------------------------------
413// DllCanUnloadNow
414//---------------------------------------------------------------------------
415
416STDAPI DllCanUnloadNow(void)
417{
418 return (g_cRefThisDll == 0 ? S_OK : S_FALSE);
419}
420
421STDAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppvOut)
422{
423 *ppvOut = NULL;
424
425 if (IsEqualIID(rclsid, CLSID_ShellExtension))
426 {
427 CShellExtClassFactory *pcf = new CShellExtClassFactory;
428
429 return pcf->QueryInterface(riid, ppvOut);
430 }
431
432 return CLASS_E_CLASSNOTAVAILABLE;
433}
434
435CShellExtClassFactory::CShellExtClassFactory()
436{
437 m_cRef = 0L;
438
439 inc_cRefThisDLL();
440}
441
442CShellExtClassFactory::~CShellExtClassFactory()
443{
444 dec_cRefThisDLL();
445}
446
447STDMETHODIMP CShellExtClassFactory::QueryInterface(REFIID riid,
448 LPVOID FAR *ppv)
449{
450 *ppv = NULL;
451
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200452 // any interface on this object is the object pointer
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000453
454 if (IsEqualIID(riid, IID_IUnknown) || IsEqualIID(riid, IID_IClassFactory))
455 {
456 *ppv = (LPCLASSFACTORY)this;
457
458 AddRef();
459
460 return NOERROR;
461 }
462
463 return E_NOINTERFACE;
464}
465
466STDMETHODIMP_(ULONG) CShellExtClassFactory::AddRef()
467{
468 return InterlockedIncrement((LPLONG)&m_cRef);
469}
470
471STDMETHODIMP_(ULONG) CShellExtClassFactory::Release()
472{
473 if (InterlockedDecrement((LPLONG)&m_cRef))
474 return m_cRef;
475
476 delete this;
477
478 return 0L;
479}
480
481STDMETHODIMP CShellExtClassFactory::CreateInstance(LPUNKNOWN pUnkOuter,
482 REFIID riid,
483 LPVOID *ppvObj)
484{
485 *ppvObj = NULL;
486
487 // Shell extensions typically don't support aggregation (inheritance)
488
489 if (pUnkOuter)
490 return CLASS_E_NOAGGREGATION;
491
492 // Create the main shell extension object. The shell will then call
493 // QueryInterface with IID_IShellExtInit--this is how shell extensions are
494 // initialized.
495
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200496 LPCSHELLEXT pShellExt = new CShellExt(); // create the CShellExt object
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000497
498 if (NULL == pShellExt)
499 return E_OUTOFMEMORY;
500
501 return pShellExt->QueryInterface(riid, ppvObj);
502}
503
504
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000505STDMETHODIMP CShellExtClassFactory::LockServer(BOOL /* fLock */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000506{
507 return NOERROR;
508}
509
510// *********************** CShellExt *************************
511CShellExt::CShellExt()
512{
513 m_cRef = 0L;
514 m_pDataObj = NULL;
515
516 inc_cRefThisDLL();
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200517
518 LoadMenuIcon();
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000519}
520
521CShellExt::~CShellExt()
522{
523 if (m_pDataObj)
524 m_pDataObj->Release();
525
526 dec_cRefThisDLL();
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200527
528 if (m_hVimIconBitmap)
529 DeleteObject(m_hVimIconBitmap);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000530}
531
532STDMETHODIMP CShellExt::QueryInterface(REFIID riid, LPVOID FAR *ppv)
533{
534 *ppv = NULL;
535
536 if (IsEqualIID(riid, IID_IShellExtInit) || IsEqualIID(riid, IID_IUnknown))
537 {
538 *ppv = (LPSHELLEXTINIT)this;
539 }
540 else if (IsEqualIID(riid, IID_IContextMenu))
541 {
542 *ppv = (LPCONTEXTMENU)this;
543 }
544
545 if (*ppv)
546 {
547 AddRef();
548
549 return NOERROR;
550 }
551
552 return E_NOINTERFACE;
553}
554
555STDMETHODIMP_(ULONG) CShellExt::AddRef()
556{
557 return InterlockedIncrement((LPLONG)&m_cRef);
558}
559
560STDMETHODIMP_(ULONG) CShellExt::Release()
561{
562
563 if (InterlockedDecrement((LPLONG)&m_cRef))
564 return m_cRef;
565
566 delete this;
567
568 return 0L;
569}
570
571
572//
573// FUNCTION: CShellExt::Initialize(LPCITEMIDLIST, LPDATAOBJECT, HKEY)
574//
575// PURPOSE: Called by the shell when initializing a context menu or property
576// sheet extension.
577//
578// PARAMETERS:
579// pIDFolder - Specifies the parent folder
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200580// pDataObj - Specifies the set of items selected in that folder.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000581// hRegKey - Specifies the type of the focused item in the selection.
582//
583// RETURN VALUE:
584//
585// NOERROR in all cases.
586//
587// COMMENTS: Note that at the time this function is called, we don't know
588// (or care) what type of shell extension is being initialized.
589// It could be a context menu or a property sheet.
590//
591
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000592STDMETHODIMP CShellExt::Initialize(LPCITEMIDLIST /* pIDFolder */,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000593 LPDATAOBJECT pDataObj,
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000594 HKEY /* hRegKey */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000595{
596 // Initialize can be called more than once
597 if (m_pDataObj)
598 m_pDataObj->Release();
599
600 // duplicate the object pointer and registry handle
601
602 if (pDataObj)
603 {
604 m_pDataObj = pDataObj;
605 pDataObj->AddRef();
606 }
607
608 return NOERROR;
609}
610
611
612//
613// FUNCTION: CShellExt::QueryContextMenu(HMENU, UINT, UINT, UINT, UINT)
614//
615// PURPOSE: Called by the shell just before the context menu is displayed.
616// This is where you add your specific menu items.
617//
618// PARAMETERS:
619// hMenu - Handle to the context menu
620// indexMenu - Index of where to begin inserting menu items
621// idCmdFirst - Lowest value for new menu ID's
622// idCmtLast - Highest value for new menu ID's
623// uFlags - Specifies the context of the menu event
624//
625// RETURN VALUE:
626//
627//
628// COMMENTS:
629//
630
631STDMETHODIMP CShellExt::QueryContextMenu(HMENU hMenu,
632 UINT indexMenu,
633 UINT idCmdFirst,
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000634 UINT /* idCmdLast */,
635 UINT /* uFlags */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000636{
637 UINT idCmd = idCmdFirst;
638
639 hres = m_pDataObj->GetData(&fmte, &medium);
640 if (medium.hGlobal)
641 cbFiles = DragQueryFile((HDROP)medium.hGlobal, (UINT)-1, 0, 0);
642
643 // InsertMenu(hMenu, indexMenu++, MF_SEPARATOR|MF_BYPOSITION, 0, NULL);
644
645 // Initialize m_cntOfHWnd to 0
646 m_cntOfHWnd = 0;
Bram Moolenaarce35c882011-07-20 17:27:25 +0200647
648 HKEY keyhandle;
649 bool showExisting = true;
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200650 bool showIcons = true;
Bram Moolenaarce35c882011-07-20 17:27:25 +0200651
652 // Check whether "Edit with existing Vim" entries are disabled.
653 if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, "Software\\Vim\\Gvim", 0,
654 KEY_READ, &keyhandle) == ERROR_SUCCESS)
655 {
656 if (RegQueryValueEx(keyhandle, "DisableEditWithExisting", 0, NULL,
657 NULL, NULL) == ERROR_SUCCESS)
658 showExisting = false;
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200659 if (RegQueryValueEx(keyhandle, "DisableContextMenuIcons", 0, NULL,
660 NULL, NULL) == ERROR_SUCCESS)
661 showIcons = false;
Bram Moolenaarce35c882011-07-20 17:27:25 +0200662 RegCloseKey(keyhandle);
663 }
664
665 // Retrieve all the vim instances, unless disabled.
666 if (showExisting)
667 EnumWindows(EnumWindowsProc, (LPARAM)this);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000668
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200669 MENUITEMINFO mii = { sizeof(MENUITEMINFO) };
670 mii.fMask = MIIM_STRING | MIIM_ID;
671 if (showIcons)
672 {
673 mii.fMask |= MIIM_BITMAP;
674 mii.hbmpItem = m_hVimIconBitmap;
675 }
676
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000677 if (cbFiles > 1)
678 {
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200679 mii.wID = idCmd++;
680 mii.dwTypeData = _("Edit with &multiple Vims");
681 mii.cch = lstrlen(mii.dwTypeData);
682 InsertMenuItem(hMenu, indexMenu++, TRUE, &mii);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000683
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200684 mii.wID = idCmd++;
685 mii.dwTypeData = _("Edit with single &Vim");
686 mii.cch = lstrlen(mii.dwTypeData);
687 InsertMenuItem(hMenu, indexMenu++, TRUE, &mii);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000688
689 if (cbFiles <= 4)
690 {
691 // Can edit up to 4 files in diff mode
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200692 mii.wID = idCmd++;
693 mii.dwTypeData = _("Diff with Vim");
694 mii.cch = lstrlen(mii.dwTypeData);
695 InsertMenuItem(hMenu, indexMenu++, TRUE, &mii);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000696 m_edit_existing_off = 3;
697 }
698 else
699 m_edit_existing_off = 2;
700
701 }
702 else
703 {
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200704 mii.wID = idCmd++;
705 mii.dwTypeData = _("Edit with &Vim");
706 mii.cch = lstrlen(mii.dwTypeData);
707 InsertMenuItem(hMenu, indexMenu++, TRUE, &mii);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000708 m_edit_existing_off = 1;
709 }
710
Bram Moolenaarbf9679a2018-10-25 11:25:53 +0200711 HMENU hSubMenu = NULL;
712 if (m_cntOfHWnd > 1)
713 {
714 hSubMenu = CreatePopupMenu();
715 mii.fMask |= MIIM_SUBMENU;
716 mii.wID = idCmd;
717 mii.dwTypeData = _("Edit with existing Vim");
718 mii.cch = lstrlen(mii.dwTypeData);
719 mii.hSubMenu = hSubMenu;
720 InsertMenuItem(hMenu, indexMenu++, TRUE, &mii);
721 mii.fMask = mii.fMask & ~MIIM_SUBMENU;
722 mii.hSubMenu = NULL;
723 }
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000724 // Now display all the vim instances
725 for (int i = 0; i < m_cntOfHWnd; i++)
726 {
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000727 char title[BUFSIZE];
728 char temp[BUFSIZE];
Bram Moolenaarbf9679a2018-10-25 11:25:53 +0200729 int index;
730 HMENU hmenu;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000731
732 // Obtain window title, continue if can not
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000733 if (GetWindowText(m_hWnd[i], title, BUFSIZE - 1) == 0)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000734 continue;
735 // Truncate the title before the path, keep the file name
736 char *pos = strchr(title, '(');
737 if (pos != NULL)
738 {
739 if (pos > title && pos[-1] == ' ')
740 --pos;
741 *pos = 0;
742 }
743 // Now concatenate
Bram Moolenaarbf9679a2018-10-25 11:25:53 +0200744 if (m_cntOfHWnd > 1)
745 temp[0] = '\0';
746 else
747 {
748 strncpy(temp, _("Edit with existing Vim - "), BUFSIZE - 1);
749 temp[BUFSIZE - 1] = '\0';
750 }
Bram Moolenaardc7e00e2009-09-11 11:26:56 +0000751 strncat(temp, title, BUFSIZE - 1 - strlen(temp));
752 temp[BUFSIZE - 1] = '\0';
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200753
754 mii.wID = idCmd++;
755 mii.dwTypeData = temp;
756 mii.cch = lstrlen(mii.dwTypeData);
Bram Moolenaarbf9679a2018-10-25 11:25:53 +0200757 if (m_cntOfHWnd > 1)
758 {
759 hmenu = hSubMenu;
760 index = i;
761 }
762 else
763 {
764 hmenu = hMenu;
765 index = indexMenu++;
766 }
767 InsertMenuItem(hmenu, index, TRUE, &mii);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000768 }
769 // InsertMenu(hMenu, indexMenu++, MF_SEPARATOR|MF_BYPOSITION, 0, NULL);
770
771 // Must return number of menu items we added.
772 return ResultFromShort(idCmd-idCmdFirst);
773}
774
775//
776// FUNCTION: CShellExt::InvokeCommand(LPCMINVOKECOMMANDINFO)
777//
778// PURPOSE: Called by the shell after the user has selected on of the
779// menu items that was added in QueryContextMenu().
780//
781// PARAMETERS:
782// lpcmi - Pointer to an CMINVOKECOMMANDINFO structure
783//
784// RETURN VALUE:
785//
786//
787// COMMENTS:
788//
789
790STDMETHODIMP CShellExt::InvokeCommand(LPCMINVOKECOMMANDINFO lpcmi)
791{
792 HRESULT hr = E_INVALIDARG;
793
794 // If HIWORD(lpcmi->lpVerb) then we have been called programmatically
795 // and lpVerb is a command that should be invoked. Otherwise, the shell
796 // has called us, and LOWORD(lpcmi->lpVerb) is the menu ID the user has
797 // selected. Actually, it's (menu ID - idCmdFirst) from QueryContextMenu().
798 if (!HIWORD(lpcmi->lpVerb))
799 {
800 UINT idCmd = LOWORD(lpcmi->lpVerb);
801
802 if (idCmd >= m_edit_existing_off)
803 {
804 // Existing with vim instance
805 hr = PushToWindow(lpcmi->hwnd,
806 lpcmi->lpDirectory,
807 lpcmi->lpVerb,
808 lpcmi->lpParameters,
809 lpcmi->nShow,
810 idCmd - m_edit_existing_off);
811 }
812 else
813 {
814 switch (idCmd)
815 {
816 case 0:
817 hr = InvokeGvim(lpcmi->hwnd,
818 lpcmi->lpDirectory,
819 lpcmi->lpVerb,
820 lpcmi->lpParameters,
821 lpcmi->nShow);
822 break;
823 case 1:
824 hr = InvokeSingleGvim(lpcmi->hwnd,
825 lpcmi->lpDirectory,
826 lpcmi->lpVerb,
827 lpcmi->lpParameters,
828 lpcmi->nShow,
829 0);
830 break;
831 case 2:
832 hr = InvokeSingleGvim(lpcmi->hwnd,
833 lpcmi->lpDirectory,
834 lpcmi->lpVerb,
835 lpcmi->lpParameters,
836 lpcmi->nShow,
837 1);
838 break;
839 }
840 }
841 }
842 return hr;
843}
844
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000845STDMETHODIMP CShellExt::PushToWindow(HWND /* hParent */,
846 LPCSTR /* pszWorkingDir */,
847 LPCSTR /* pszCmd */,
848 LPCSTR /* pszParam */,
849 int /* iShowCmd */,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000850 int idHWnd)
851{
852 HWND hWnd = m_hWnd[idHWnd];
853
854 // Show and bring vim instance to foreground
855 if (IsIconic(hWnd) != 0)
856 ShowWindow(hWnd, SW_RESTORE);
857 else
858 ShowWindow(hWnd, SW_SHOW);
859 SetForegroundWindow(hWnd);
860
861 // Post the selected files to the vim instance
862 PostMessage(hWnd, WM_DROPFILES, (WPARAM)medium.hGlobal, 0);
863
864 return NOERROR;
865}
866
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000867STDMETHODIMP CShellExt::GetCommandString(UINT_PTR /* idCmd */,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000868 UINT uFlags,
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000869 UINT FAR * /* reserved */,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000870 LPSTR pszName,
871 UINT cchMax)
872{
873 if (uFlags == GCS_HELPTEXT && cchMax > 35)
874 lstrcpy(pszName, _("Edits the selected file(s) with Vim"));
875
876 return NOERROR;
877}
878
879BOOL CALLBACK CShellExt::EnumWindowsProc(HWND hWnd, LPARAM lParam)
880{
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000881 char temp[BUFSIZE];
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000882
883 // First do a bunch of check
884 // No invisible window
885 if (!IsWindowVisible(hWnd)) return TRUE;
886 // No child window ???
887 // if (GetParent(hWnd)) return TRUE;
888 // Class name should be Vim, if failed to get class name, return
889 if (GetClassName(hWnd, temp, sizeof(temp)) == 0)
890 return TRUE;
891 // Compare class name to that of vim, if not, return
892 if (_strnicmp(temp, "vim", sizeof("vim")) != 0)
893 return TRUE;
894 // First check if the number of vim instance exceeds MAX_HWND
895 CShellExt *cs = (CShellExt*) lParam;
896 if (cs->m_cntOfHWnd >= MAX_HWND) return TRUE;
897 // Now we get the vim window, put it into some kind of array
898 cs->m_hWnd[cs->m_cntOfHWnd] = hWnd;
899 cs->m_cntOfHWnd ++;
900
901 return TRUE; // continue enumeration (otherwise this would be false)
902}
903
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200904BOOL CShellExt::LoadMenuIcon()
905{
906 char vimExeFile[BUFSIZE];
907 getGvimName(vimExeFile, 1);
908 if (vimExeFile[0] == '\0')
909 return FALSE;
910 HICON hVimIcon;
911 if (ExtractIconEx(vimExeFile, 0, NULL, &hVimIcon, 1) == 0)
912 return FALSE;
913 m_hVimIconBitmap = IconToBitmap(hVimIcon,
914 GetSysColorBrush(COLOR_MENU),
915 GetSystemMetrics(SM_CXSMICON),
916 GetSystemMetrics(SM_CYSMICON));
917 return TRUE;
918}
919
Bram Moolenaar6199d432017-10-14 19:05:44 +0200920#ifndef __BORLANDC__
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000921 static char *
922searchpath(char *name)
923{
Bram Moolenaare759a7a2005-07-12 22:50:18 +0000924 static char widename[2 * BUFSIZE];
925 static char location[2 * BUFSIZE + 2];
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000926
927 // There appears to be a bug in FindExecutableA() on Windows NT.
928 // Use FindExecutableW() instead...
Bram Moolenaar6199d432017-10-14 19:05:44 +0200929 MultiByteToWideChar(CP_ACP, 0, (LPCSTR)name, -1,
930 (LPWSTR)widename, BUFSIZE);
931 if (FindExecutableW((LPCWSTR)widename, (LPCWSTR)"",
932 (LPWSTR)location) > (HINSTANCE)32)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000933 {
Bram Moolenaar6199d432017-10-14 19:05:44 +0200934 WideCharToMultiByte(CP_ACP, 0, (LPWSTR)location, -1,
935 (LPSTR)widename, 2 * BUFSIZE, NULL, NULL);
936 return widename;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000937 }
Bram Moolenaar7baa45d2007-08-18 15:00:42 +0000938 return (char *)"";
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000939}
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000940#endif
941
942STDMETHODIMP CShellExt::InvokeGvim(HWND hParent,
Bram Moolenaare6a91fd2008-07-24 18:51:11 +0000943 LPCSTR /* pszWorkingDir */,
944 LPCSTR /* pszCmd */,
945 LPCSTR /* pszParam */,
946 int /* iShowCmd */)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000947{
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200948 wchar_t m_szFileUserClickedOn[BUFSIZE];
949 wchar_t cmdStrW[BUFSIZE];
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000950 UINT i;
951
952 for (i = 0; i < cbFiles; i++)
953 {
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200954 DragQueryFileW((HDROP)medium.hGlobal,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000955 i,
956 m_szFileUserClickedOn,
957 sizeof(m_szFileUserClickedOn));
958
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +0200959 getGvimInvocationW(cmdStrW);
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200960 wcscat(cmdStrW, L" \"");
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000961
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200962 if ((wcslen(cmdStrW) + wcslen(m_szFileUserClickedOn) + 2) < BUFSIZE)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000963 {
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200964 wcscat(cmdStrW, m_szFileUserClickedOn);
965 wcscat(cmdStrW, L"\"");
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000966
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200967 STARTUPINFOW si;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000968 PROCESS_INFORMATION pi;
969
970 ZeroMemory(&si, sizeof(si));
971 si.cb = sizeof(si);
972
973 // Start the child process.
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +0200974 if (!CreateProcessW(NULL, // No module name (use command line).
975 cmdStrW, // Command line.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000976 NULL, // Process handle not inheritable.
977 NULL, // Thread handle not inheritable.
978 FALSE, // Set handle inheritance to FALSE.
Bram Moolenaarcf839732011-08-10 16:31:23 +0200979 oldenv == NULL ? 0 : CREATE_UNICODE_ENVIRONMENT,
980 oldenv, // Use unmodified environment block.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000981 NULL, // Use parent's starting directory.
982 &si, // Pointer to STARTUPINFO structure.
983 &pi) // Pointer to PROCESS_INFORMATION structure.
984 )
985 {
986 MessageBox(
987 hParent,
988 _("Error creating process: Check if gvim is in your path!"),
989 _("gvimext.dll error"),
990 MB_OK);
991 }
992 else
993 {
994 CloseHandle( pi.hProcess );
995 CloseHandle( pi.hThread );
996 }
997 }
998 else
999 {
1000 MessageBox(
1001 hParent,
1002 _("Path length too long!"),
1003 _("gvimext.dll error"),
1004 MB_OK);
1005 }
1006 }
1007
1008 return NOERROR;
1009}
1010
1011
1012STDMETHODIMP CShellExt::InvokeSingleGvim(HWND hParent,
Bram Moolenaare6a91fd2008-07-24 18:51:11 +00001013 LPCSTR /* pszWorkingDir */,
1014 LPCSTR /* pszCmd */,
1015 LPCSTR /* pszParam */,
1016 int /* iShowCmd */,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001017 int useDiff)
1018{
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001019 wchar_t m_szFileUserClickedOn[BUFSIZE];
1020 wchar_t *cmdStrW;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001021 size_t cmdlen;
1022 size_t len;
1023 UINT i;
1024
Bram Moolenaare759a7a2005-07-12 22:50:18 +00001025 cmdlen = BUFSIZE;
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001026 cmdStrW = (wchar_t *) malloc(cmdlen * sizeof(wchar_t));
Bram Moolenaar7bc25ae2015-05-04 18:27:36 +02001027 getGvimInvocationW(cmdStrW);
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001028
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001029 if (useDiff)
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001030 wcscat(cmdStrW, L" -d");
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001031 for (i = 0; i < cbFiles; i++)
1032 {
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001033 DragQueryFileW((HDROP)medium.hGlobal,
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001034 i,
1035 m_szFileUserClickedOn,
1036 sizeof(m_szFileUserClickedOn));
1037
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001038 len = wcslen(cmdStrW) + wcslen(m_szFileUserClickedOn) + 4;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001039 if (len > cmdlen)
1040 {
Bram Moolenaare759a7a2005-07-12 22:50:18 +00001041 cmdlen = len + BUFSIZE;
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001042 cmdStrW = (wchar_t *)realloc(cmdStrW, cmdlen * sizeof(wchar_t));
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001043 }
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001044 wcscat(cmdStrW, L" \"");
1045 wcscat(cmdStrW, m_szFileUserClickedOn);
1046 wcscat(cmdStrW, L"\"");
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001047 }
1048
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001049 STARTUPINFOW si;
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001050 PROCESS_INFORMATION pi;
1051
1052 ZeroMemory(&si, sizeof(si));
1053 si.cb = sizeof(si);
1054
1055 // Start the child process.
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001056 if (!CreateProcessW(NULL, // No module name (use command line).
1057 cmdStrW, // Command line.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001058 NULL, // Process handle not inheritable.
1059 NULL, // Thread handle not inheritable.
1060 FALSE, // Set handle inheritance to FALSE.
Bram Moolenaarcf839732011-08-10 16:31:23 +02001061 oldenv == NULL ? 0 : CREATE_UNICODE_ENVIRONMENT,
1062 oldenv, // Use unmodified environment block.
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001063 NULL, // Use parent's starting directory.
1064 &si, // Pointer to STARTUPINFO structure.
1065 &pi) // Pointer to PROCESS_INFORMATION structure.
1066 )
1067 {
1068 MessageBox(
1069 hParent,
1070 _("Error creating process: Check if gvim is in your path!"),
1071 _("gvimext.dll error"),
1072 MB_OK);
1073 }
1074 else
1075 {
1076 CloseHandle(pi.hProcess);
1077 CloseHandle(pi.hThread);
1078 }
1079
Bram Moolenaar7e6d3bd2010-07-10 19:22:44 +02001080 free(cmdStrW);
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001081
1082 return NOERROR;
1083}