ReactOS 0.4.15-dev-5875-g7c755d9
addresseditbox.cpp
Go to the documentation of this file.
1/*
2 * ReactOS Explorer
3 *
4 * Copyright 2009 Andrew Hill <ash77 at domain reactos.org>
5 * Copyright 2023 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22/*
23This class handles the combo box of the address band.
24*/
25
26#include "precomp.h"
27
28/*
29TODO:
30 Add drag and drop of icon in edit box
31 Handle change notifies to update appropriately
32*/
33
35 fCombobox(WC_COMBOBOXEXW, this),
36 fEditWindow(WC_EDITW, this),
37 fSite(NULL),
38 pidlLastParsed(NULL)
39{
40}
41
43{
46}
47
49{
50 if (!pOwner)
51 {
52 CComPtr<IBrowserService> browserService;
54 if (SUCCEEDED(hResult))
55 AtlUnadvise(browserService, DIID_DWebBrowserEvents, fAdviseCookie);
56 fSite = NULL;
57 }
58 // connect to browser connection point
59 return 0;
60}
61
63{
64 return E_NOTIMPL;
65}
66
68{
69 return E_NOTIMPL;
70}
71
72HRESULT STDMETHODCALLTYPE CAddressEditBox::Init(HWND comboboxEx, HWND editControl, long param14, IUnknown *param18)
73{
74 CComPtr<IBrowserService> browserService;
75
76 fCombobox.SubclassWindow(comboboxEx);
77 fEditWindow.SubclassWindow(editControl);
78 fSite = param18;
79 hComboBoxEx = comboboxEx;
80
82
83 // take advice to watch events
84 HRESULT hResult = IUnknown_QueryService(param18, SID_SShellBrowser, IID_PPV_ARG(IBrowserService, &browserService));
85 if (SUCCEEDED(hResult))
86 {
87 hResult = AtlAdvise(browserService, static_cast<IDispatch *>(this), DIID_DWebBrowserEvents, &fAdviseCookie);
88 }
89
90 return hResult;
91}
92
94{
95 return E_NOTIMPL;
96}
97
99{
100 pszText.Free();
102 if (!pszText.Allocate(cchMax))
103 return FALSE;
104 return fCombobox.GetWindowText(pszText, cchMax);
105}
106
108{
109 /* Get the current pidl of the browser */
110 CComHeapPtr<ITEMIDLIST> absolutePIDL;
111 HRESULT hr = GetAbsolutePidl(&absolutePIDL);
113 return hr;
114
115 /* Fill the combobox */
116 ATLASSERT(absolutePIDL != NULL);
117 PopulateComboBox(absolutePIDL);
118
119 /* Get pShellFolder and pidlChild */
120 CComPtr<IShellFolder> pShellFolder;
121 PCITEMID_CHILD pidlChild;
122 hr = SHBindToParent(absolutePIDL, IID_PPV_ARG(IShellFolder, &pShellFolder), &pidlChild);
124 return hr;
125
126 /* Get ready to set the displayed item */
128 item.iItem = -1; /* -1 to specify the displayed item */
129 item.iImage = SHMapPIDLToSystemImageListIndex(pShellFolder, pidlChild, &item.iSelectedImage);
130
131 /* Set the path if filesystem; otherwise use the name */
132 WCHAR szPathOrName[MAX_PATH];
133 if (!SHGetPathFromIDListW(absolutePIDL, szPathOrName))
134 {
135 STRRET ret;
136 hr = pShellFolder->GetDisplayNameOf(pidlChild, SHGDN_FORADDRESSBAR | SHGDN_FORPARSING, &ret);
138 return hr;
139
140 hr = StrRetToBufW(&ret, pidlChild, szPathOrName, _countof(szPathOrName));
142 return hr;
143 }
144 item.pszText = szPathOrName;
145
146 /* Ownership of absolutePIDL will be moved to fCombobox. See CBEN_DELETEITEM */
147 item.lParam = reinterpret_cast<LPARAM>(absolutePIDL.Detach());
148
149 fCombobox.SendMessage(CBEM_SETITEM, 0, reinterpret_cast<LPARAM>(&item)); /* Set it! */
150 return S_OK;
151}
152
154{
156 HRESULT hr = IUnknown_QueryService(fSite, SID_STopLevelBrowser, IID_PPV_ARG(IBrowserService, &isb));
158 return hr;
159
160 hr = isb->GetPidl(pAbsolutePIDL);
162 return hr;
163
164 return S_OK;
165}
166
167/* Execute command line from address bar */
169{
170 /* Get command line */
171 CComHeapPtr<WCHAR> pszCmdLine;
172 if (!GetComboBoxText(pszCmdLine))
173 return FALSE;
174
175 /* Split 1st parameter from trailing arguments */
176 PWCHAR args = PathGetArgsW(pszCmdLine);
177 PathRemoveArgsW(pszCmdLine);
178
179 PathUnquoteSpacesW(pszCmdLine); /* Unquote the 1st parameter */
180
181 /* Get ready for execution */
182 SHELLEXECUTEINFOW info = { sizeof(info), SEE_MASK_FLAG_NO_UI, m_hWnd };
183 info.lpFile = pszCmdLine;
184 info.lpParameters = args;
185 info.nShow = SW_SHOWNORMAL;
186
187 /* Set current directory */
188 WCHAR dir[MAX_PATH] = L"";
190 if (SUCCEEDED(GetAbsolutePidl(&pidl)))
191 {
193 info.lpDirectory = dir;
194 }
195
196 if (!::ShellExecuteExW(&info)) /* Execute! */
197 return FALSE;
198
200 return TRUE;
201}
202
204{
205 ULONG eaten;
206 ULONG attributes;
207 HRESULT hr;
208 HWND topLevelWindow;
209 PIDLIST_ABSOLUTE pidlCurrent= NULL;
210 PIDLIST_RELATIVE pidlRelative = NULL;
211 CComPtr<IShellFolder> psfCurrent;
212
216 return hr;
217
218 hr = IUnknown_GetWindow(pbs, &topLevelWindow);
220 return hr;
221
222 /* Get the path to browse and expand it if needed */
225 return E_FAIL;
226
227 INT addressLength = (wcschr(input, L'%') ? ::SHExpandEnvironmentStringsW(input, NULL, 0) : 0);
228 if (addressLength <= 0 ||
229 !address.Allocate(addressLength + 1) ||
231 {
232 address.Free();
233 address.Attach(input.Detach());
234 }
235
236 /* Try to parse a relative path and if it fails, try to browse an absolute path */
237 CComPtr<IShellFolder> psfDesktop;
238 hr = SHGetDesktopFolder(&psfDesktop);
240 goto cleanup;
241
242 hr = pbs->GetPidl(&pidlCurrent);
244 goto parseabsolute;
245
246 hr = psfDesktop->BindToObject(pidlCurrent, NULL, IID_PPV_ARG(IShellFolder, &psfCurrent));
248 goto parseabsolute;
249
250 hr = psfCurrent->ParseDisplayName(topLevelWindow, NULL, address, &eaten, &pidlRelative, &attributes);
251 if (SUCCEEDED(hr))
252 {
253 pidlLastParsed = ILCombine(pidlCurrent, pidlRelative);
254 ILFree(pidlRelative);
255 goto cleanup;
256 }
257
258parseabsolute:
259 /* We couldn't parse a relative path, attempt to parse an absolute path */
260 hr = psfDesktop->ParseDisplayName(topLevelWindow, NULL, address, &eaten, &pidlLastParsed, &attributes);
261
262cleanup:
263 if (pidlCurrent)
264 ILFree(pidlCurrent);
265 return hr;
266}
267
269{
272 return E_FAIL;
273
275
276 return hRet;
277}
278
280{
281 HRESULT hr;
282
283 /*
284 * Parse the path if it wasn't parsed
285 */
286 if (!pidlLastParsed)
287 {
288 hr = ParseNow(0);
289
290 /* If the destination path doesn't exist then display an error message */
292 {
293 if (ExecuteCommandLine())
294 return S_OK;
295
297 }
298
299 if (!pidlLastParsed)
300 return E_FAIL;
301 }
302
303 /*
304 * Get the IShellBrowser and IBrowserService interfaces of the shell browser
305 */
308 if (FAILED(hr))
309 return hr;
310
311 /*
312 * Get the current pidl of the shellbrowser and check if it is the same with the parsed one
313 */
314 PIDLIST_ABSOLUTE pidl;
315 hr = GetAbsolutePidl(&pidl);
316 if (FAILED(hr))
317 return hr;
318
320 hr = SHGetDesktopFolder(&psf);
321 if (FAILED(hr))
322 return hr;
323
324 hr = psf->CompareIDs(0, pidl, pidlLastParsed);
325
326 SHFree(pidl);
327 if (hr == 0)
328 return S_OK;
329
330 /*
331 * Attempt to browse to the parsed pidl
332 */
333 hr = pisb->BrowseObject(pidlLastParsed, 0);
334 if (SUCCEEDED(hr))
335 return hr;
336
337 /*
338 * Browsing to the pidl failed so it's not a folder. So invoke its defaule command.
339 */
340 HWND topLevelWindow;
341 hr = IUnknown_GetWindow(pisb, &topLevelWindow);
342 if (FAILED(hr))
343 return hr;
344
345 LPCITEMIDLIST pidlChild;
348 if (FAILED(hr))
349 return hr;
350
351 hr = SHInvokeDefaultCommand(topLevelWindow, sf, pidlChild);
352 if (FAILED(hr))
353 return hr;
354
355 return hr;
356}
357
359{
360 return E_NOTIMPL;
361}
362
364 HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, LRESULT *theResult)
365{
366 LPNMHDR hdr;
367
368 if (theResult)
369 *theResult = 0;
370
371 switch (uMsg)
372 {
373 case WM_COMMAND:
374 {
376 {
377 UINT selectedIndex = SendMessageW((HWND)lParam, CB_GETCURSEL, 0, 0);
379 Execute(0);
380 }
381 break;
382 }
383 case WM_NOTIFY:
384 {
385 hdr = (LPNMHDR) lParam;
386 if (hdr->code == CBEN_ENDEDIT)
387 {
388 NMCBEENDEDITW *endEdit = (NMCBEENDEDITW*) lParam;
389 if (endEdit->iWhy == CBENF_RETURN)
390 {
391 Execute(0);
392 }
393 else if (endEdit->iWhy == CBENF_ESCAPE)
394 {
395 /* Reset the contents of the combo box */
397 }
398 }
399 else if (hdr->code == CBEN_DELETEITEM)
400 {
402 LPITEMIDLIST itemPidl = (LPITEMIDLIST)pCBEx->ceItem.lParam;
403 if (itemPidl)
404 {
405 ILFree(itemPidl);
406 }
407 }
408 break;
409 }
410 }
411 return S_OK;
412}
413
415{
416 if (fCombobox.m_hWnd == hWnd)
417 return S_OK;
418 if (fEditWindow.m_hWnd == hWnd)
419 return S_OK;
420 return S_FALSE;
421}
422
424 const GUID *pguidCmdGroup, ULONG cCmds, OLECMD prgCmds[ ], OLECMDTEXT *pCmdText)
425{
426 return E_NOTIMPL;
427}
428
430 DWORD nCmdexecopt, VARIANT *pvaIn, VARIANT *pvaOut)
431{
432 return E_NOTIMPL;
433}
434
436{
437 return E_NOTIMPL;
438}
439
441{
442 return E_NOTIMPL;
443}
444
446 REFIID riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)
447{
448 return E_NOTIMPL;
449}
450
452 WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
453{
454 if (pDispParams == NULL)
455 return E_INVALIDARG;
456
457 switch (dispIdMember)
458 {
461 if (pidlLastParsed)
462 {
465 }
466
468 break;
469 }
470 return S_OK;
471}
472
474{
475 if (pClassID == NULL)
476 return E_POINTER;
477 *pClassID = CLSID_AddressEditBox;
478 return S_OK;
479}
480
482{
483 return E_NOTIMPL;
484}
485
487{
488 return E_NOTIMPL;
489}
490
492{
493 return E_NOTIMPL;
494}
495
497{
498 return E_NOTIMPL;
499}
500
502{
503 HRESULT hr;
504 LPITEMIDLIST pidl;
505 int indent = 0;
506 int index;
507
509 for (int i = 0; i < index; i++)
512
513 /* Calculate the indent level. No need to clone the pidl */
514 pidl = pidlCurrent;
515 do
516 {
517 if(!pidl->mkid.cb)
518 break;
519 pidl = ILGetNext(pidl);
520 indent++;
521 } while (pidl);
522 index = indent;
523
524 /* Add every id from the pidl in the combo box */
525 pidl = ILClone(pidlCurrent);
526 do
527 {
528 AddComboBoxItem(pidl, 0, index);
529 ILRemoveLastID(pidl);
530 index--;
531 } while (index >= 0);
532 ILFree(pidl);
533
534 /* Add the items of the desktop */
535 FillOneLevel(0, 1, indent);
536
537 /* Add the items of My Computer */
540 return;
541
543 {
544 if (ILIsEqual(i, pidl))
545 {
547 break;
548 }
549 index++;
550 }
551 ILFree(pidl);
552}
553
555{
556 HRESULT hr;
557 WCHAR buf[4096];
558
559 LPCITEMIDLIST pidlChild;
561 hr = SHBindToParent(pidl, IID_PPV_ARG(IShellFolder, &sf), &pidlChild);
563 return;
564
565 STRRET strret;
566 hr = sf->GetDisplayNameOf(pidlChild, SHGDN_FORADDRESSBAR, &strret);
568 return;
569
570 hr = StrRetToBufW(&strret, pidlChild, buf, 4095);
572 return;
573
574 COMBOBOXEXITEMW item = {0};
576 item.iImage = SHMapPIDLToSystemImageListIndex(sf, pidlChild, &item.iSelectedImage);
577 item.pszText = buf;
578 item.lParam = (LPARAM)(ILClone(pidl));
579 item.iIndent = indent;
580 item.iItem = index;
582}
583
584void CAddressEditBox::FillOneLevel(int index, int levelIndent, int indent)
585{
586 HRESULT hr;
587 ULONG numObj;
588 int count;
589 LPITEMIDLIST pidl, pidl2, pidl3, pidl4;
590
591 count = index + 1;
592 pidl = GetItemData(index);
593 pidl2 = GetItemData(count);
594 if(pidl)
595 {
596 CComPtr<IShellFolder> psfDesktop;
597 CComPtr<IShellFolder> psfItem;
598
599 hr = SHGetDesktopFolder(&psfDesktop);
601 return;
602
603 if (!pidl->mkid.cb)
604 {
605 psfItem = psfDesktop;
606 }
607 else
608 {
609 hr = psfDesktop->BindToObject(pidl, NULL, IID_PPV_ARG(IShellFolder, &psfItem));
611 return;
612 }
613
614 CComPtr<IEnumIDList> pEnumIDList;
615 hr = psfItem->EnumObjects(0, SHCONTF_FOLDERS | SHCONTF_INCLUDEHIDDEN, &pEnumIDList);
617 return;
618
619 do
620 {
621 hr = pEnumIDList->Next(1, &pidl3, &numObj);
622 if(hr != S_OK || !numObj)
623 break;
624
625 pidl4 = ILCombine(pidl, pidl3);
626 if (pidl2 && ILIsEqual(pidl4, pidl2))
627 count += (indent - levelIndent);
628 else
629 AddComboBoxItem(pidl4, count, levelIndent);
630 count++;
631 ILFree(pidl3);
632 ILFree(pidl4);
633 } while (true);
634 }
635}
636
638{
640
641 memset(&item, 0, sizeof(COMBOBOXEXITEMW));
642 item.mask = CBEIF_LPARAM;
643 item.iItem = index;
645 return (LPITEMIDLIST)item.lParam;
646}
#define ATLASSERT(x)
Definition: CComVariant.cpp:10
HRESULT WINAPI SHGetDesktopFolder(IShellFolder **psf)
UINT cchMax
unsigned int dir
Definition: maze.c:112
HWND hWnd
Definition: settings.c:17
#define index(s, c)
Definition: various.h:29
#define STDMETHODCALLTYPE
Definition: bdasup.h:9
BOOL SubclassWindow(HWND hWnd)
Definition: atlwin.h:1790
int GetWindowTextLength() const
Definition: atlwin.h:854
int GetWindowText(_Out_writes_to_(nMaxCount, return+1) LPTSTR lpszStringBuf, _In_ int nMaxCount) const
Definition: atlwin.h:822
LRESULT SendMessage(UINT message, WPARAM wParam=0, LPARAM lParam=0)
Definition: atlwin.h:1110
HWND m_hWnd
Definition: atlwin.h:267
virtual HRESULT STDMETHODCALLTYPE GetTypeInfo(UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo)
virtual HRESULT STDMETHODCALLTYPE GetIDsOfNames(REFIID riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)
HRESULT RefreshAddress()
virtual HRESULT STDMETHODCALLTYPE FileSysChange(long param8, long paramC)
void FillOneLevel(int index, int levelIndent, int indent)
CContainedWindow fEditWindow
virtual HRESULT STDMETHODCALLTYPE Invoke(DISPID dispIdMember, REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
HRESULT GetAbsolutePidl(PIDLIST_ABSOLUTE *pAbsolutePIDL)
virtual HRESULT STDMETHODCALLTYPE SetOwner(IUnknown *)
virtual HRESULT STDMETHODCALLTYPE IsDirty()
CContainedWindow fCombobox
CComPtr< IUnknown > fSite
virtual HRESULT STDMETHODCALLTYPE GetSizeMax(ULARGE_INTEGER *pcbSize)
HRESULT STDMETHODCALLTYPE ShowFileNotFoundError(HRESULT hRet)
virtual HRESULT STDMETHODCALLTYPE ParseNow(long paramC)
virtual HRESULT STDMETHODCALLTYPE SetCurrentDir(long paramC)
LPITEMIDLIST GetItemData(int index)
virtual HRESULT STDMETHODCALLTYPE OnWinEvent(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam, LRESULT *theResult)
virtual HRESULT STDMETHODCALLTYPE QueryStatus(const GUID *pguidCmdGroup, ULONG cCmds, OLECMD prgCmds[], OLECMDTEXT *pCmdText)
virtual HRESULT STDMETHODCALLTYPE Save(long paramC)
virtual HRESULT STDMETHODCALLTYPE Load(IStream *pStm)
LPITEMIDLIST pidlLastParsed
virtual HRESULT STDMETHODCALLTYPE Exec(const GUID *pguidCmdGroup, DWORD nCmdID, DWORD nCmdexecopt, VARIANT *pvaIn, VARIANT *pvaOut)
void AddComboBoxItem(LPITEMIDLIST pidl, int index, int indent)
virtual HRESULT STDMETHODCALLTYPE GetTypeInfoCount(UINT *pctinfo)
virtual HRESULT STDMETHODCALLTYPE IsWindowOwner(HWND hWnd)
void PopulateComboBox(LPITEMIDLIST pidl)
BOOL GetComboBoxText(CComHeapPtr< WCHAR > &pszText)
virtual HRESULT STDMETHODCALLTYPE Execute(long paramC)
virtual HRESULT STDMETHODCALLTYPE GetClassID(CLSID *pClassID)
virtual HRESULT STDMETHODCALLTYPE Init(HWND comboboxEx, HWND editControl, long param14, IUnknown *param18)
virtual HRESULT STDMETHODCALLTYPE Refresh(long param8)
void Free()
Definition: atlalloc.h:153
T * Detach()
Definition: atlalloc.h:168
bool Allocate(_In_ size_t nElements=1)
Definition: atlalloc.h:143
WPARAM wParam
Definition: combotst.c:138
LPARAM lParam
Definition: combotst.c:139
#define E_INVALIDARG
Definition: ddrawi.h:101
#define E_NOTIMPL
Definition: ddrawi.h:99
#define E_FAIL
Definition: ddrawi.h:102
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
HRESULT WINAPI AtlAdvise(IUnknown *pUnkCP, IUnknown *pUnk, const IID *iid, DWORD *pdw)
Definition: atl.c:45
HRESULT WINAPI AtlUnadvise(IUnknown *pUnkCP, const IID *iid, DWORD dw)
Definition: atl.c:73
#define IDS_PARSE_ADDR_ERR_TITLE
Definition: resource.h:181
#define IDS_PARSE_ADDR_ERR_TEXT
Definition: resource.h:182
static const WCHAR indent[]
Definition: object.c:1156
#define wcschr
Definition: compat.h:17
#define MAX_PATH
Definition: compat.h:34
static void cleanup(void)
Definition: main.c:1335
#define ShellMessageBoxW
Definition: precomp.h:59
void WINAPI SHFree(LPVOID pv)
Definition: shellole.c:326
HRESULT WINAPI SHGetSpecialFolderLocation(HWND hwndOwner, INT nFolder, LPITEMIDLIST *ppidl)
Definition: shellpath.c:3194
HRESULT WINAPI IUnknown_QueryService(IUnknown *, REFGUID, REFIID, LPVOID *)
Definition: ordinal.c:1494
HRESULT WINAPI SHInvokeDefaultCommand(HWND hWnd, IShellFolder *lpFolder, LPCITEMIDLIST lpApidl)
Definition: ordinal.c:2974
HRESULT WINAPI IUnknown_GetWindow(IUnknown *lpUnknown, HWND *lphWnd)
Definition: ordinal.c:1329
void WINAPI PathRemoveArgsW(LPWSTR lpszPath)
Definition: path.c:779
VOID WINAPI PathUnquoteSpacesW(LPWSTR lpszPath)
Definition: path.c:1034
BOOL WINAPI PathIsDirectoryW(LPCWSTR lpszPath)
Definition: path.c:1723
LPWSTR WINAPI PathGetArgsW(LPCWSTR lpszPath)
Definition: path.c:506
HRESULT WINAPI StrRetToBufW(LPSTRRET src, const ITEMIDLIST *pidl, LPWSTR dest, UINT len)
Definition: string.c:1522
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
unsigned short WORD
Definition: ntddk_ex.h:93
GLuint GLuint GLsizei count
Definition: gl.h:1545
GLuint address
Definition: glext.h:9393
GLuint index
Definition: glext.h:6031
GLenum GLuint GLenum GLsizei const GLchar * buf
Definition: glext.h:7751
GLenum GLenum GLenum input
Definition: glext.h:9031
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
int WINAPI SHMapPIDLToSystemImageListIndex(IShellFolder *sh, LPCITEMIDLIST pidl, int *pIndex)
Definition: iconcache.cpp:783
REFIID riid
Definition: atlbase.h:39
#define S_OK
Definition: intsafe.h:52
#define SUCCEEDED(hr)
Definition: intsafe.h:50
#define FAILED(hr)
Definition: intsafe.h:51
char hdr[14]
Definition: iptest.cpp:33
if(dx< 0)
Definition: linetemp.h:194
#define ERROR_FILE_NOT_FOUND
Definition: disk.h:79
static LPOLESTR
Definition: stg_prop.c:27
static VARIANTARG static DISPID
Definition: ordinal.c:49
static ATOM item
Definition: dde.c:856
unsigned int UINT
Definition: ndis.h:50
#define UNICODE_NULL
#define L(x)
Definition: ntvdm.h:50
LPITEMIDLIST WINAPI ILClone(LPCITEMIDLIST pidl)
Definition: pidl.c:228
void WINAPI ILFree(LPITEMIDLIST pidl)
Definition: pidl.c:925
LPITEMIDLIST WINAPI ILCombine(LPCITEMIDLIST pidl1, LPCITEMIDLIST pidl2)
Definition: pidl.c:699
BOOL WINAPI ILRemoveLastID(LPITEMIDLIST pidl)
Definition: pidl.c:212
HRESULT WINAPI SHBindToParent(LPCITEMIDLIST pidl, REFIID riid, LPVOID *ppv, LPCITEMIDLIST *ppidlLast)
Definition: pidl.c:1337
BOOL WINAPI SHGetPathFromIDListW(LPCITEMIDLIST pidl, LPWSTR pszPath)
Definition: pidl.c:1294
LPITEMIDLIST WINAPI ILGetNext(LPCITEMIDLIST pidl)
Definition: pidl.c:851
BOOL WINAPI ILIsEqual(LPCITEMIDLIST pidl1, LPCITEMIDLIST pidl2)
Definition: pidl.c:535
#define CBEM_SETITEM
Definition: commctrl.h:3846
#define CBEN_ENDEDIT
Definition: commctrl.h:3885
#define CBEIF_IMAGE
Definition: commctrl.h:3787
#define CBENF_RETURN
Definition: commctrl.h:3888
#define WC_EDITW
Definition: commctrl.h:4687
#define CBEM_GETITEMW
Definition: commctrl.h:3843
#define CBEIF_SELECTEDIMAGE
Definition: commctrl.h:3788
#define WC_COMBOBOXEXW
Definition: commctrl.h:3781
#define CBEIF_TEXT
Definition: commctrl.h:3786
#define CBENF_ESCAPE
Definition: commctrl.h:3889
#define CBEM_DELETEITEM
Definition: commctrl.h:3831
#define CBEN_DELETEITEM
Definition: commctrl.h:3873
#define CBEIF_INDENT
Definition: commctrl.h:3790
#define CBEM_INSERTITEMW
Definition: commctrl.h:3841
#define CBEIF_LPARAM
Definition: commctrl.h:3791
#define PNMCOMBOBOXEX
Definition: commctrl.h:3868
#define REFIID
Definition: guiddef.h:118
#define WM_NOTIFY
Definition: richedit.h:61
DWORD LCID
Definition: nls.h:13
#define memset(x, y, z)
Definition: compat.h:39
#define SEE_MASK_FLAG_NO_UI
Definition: shellapi.h:36
#define FAILED_UNEXPECTEDLY(hr)
Definition: shellutils.h:82
BOOL WINAPI DECLSPEC_HOTPATCH ShellExecuteExW(LPSHELLEXECUTEINFOW sei)
Definition: shlexec.cpp:2335
HRESULT hr
Definition: shlfolder.c:183
#define SID_SShellBrowser
Definition: shlguid.h:128
#define CSIDL_DRIVES
Definition: shlobj.h:2041
HRESULT WINAPI SHAutoComplete(HWND hwndEdit, DWORD dwFlags)
Definition: autocomp.cpp:191
#define SHACF_FILESYSTEM
Definition: shlwapi.h:1912
#define SHACF_USETAB
Definition: shlwapi.h:1916
#define SHACF_URLALL
Definition: shlwapi.h:1915
DWORD WINAPI SHExpandEnvironmentStringsW(LPCWSTR, LPWSTR, DWORD)
ITEMIDLIST UNALIGNED * LPITEMIDLIST
Definition: shtypes.idl:41
const ITEMIDLIST UNALIGNED * LPCITEMIDLIST
Definition: shtypes.idl:42
#define _countof(array)
Definition: sndvol32.h:68
Definition: match.c:390
int32_t INT
Definition: typedefs.h:58
uint16_t * PWCHAR
Definition: typedefs.h:56
uint32_t ULONG
Definition: typedefs.h:59
#define HIWORD(l)
Definition: typedefs.h:247
int ret
#define DISPID_NAVIGATECOMPLETE2
Definition: webchild.h:54
#define DISPID_DOCUMENTCOMPLETE
Definition: webchild.h:61
_In_ DWORD _Out_ _In_ WORD wFlags
Definition: wincon.h:531
LONG_PTR LPARAM
Definition: windef.h:208
LONG_PTR LRESULT
Definition: windef.h:209
UINT_PTR WPARAM
Definition: windef.h:207
#define S_FALSE
Definition: winerror.h:2357
#define HRESULT_FROM_WIN32(x)
Definition: winerror.h:92
#define E_POINTER
Definition: winerror.h:2365
#define ERROR_INVALID_DRIVE
Definition: winerror.h:118
#define SW_SHOWNORMAL
Definition: winuser.h:764
#define WM_COMMAND
Definition: winuser.h:1730
#define CB_RESETCONTENT
Definition: winuser.h:1949
#define CB_GETCOUNT
Definition: winuser.h:1932
#define CBN_SELCHANGE
Definition: winuser.h:1969
#define MB_ICONERROR
Definition: winuser.h:781
struct tagNMHDR * LPNMHDR
#define CB_GETITEMDATA
Definition: winuser.h:1940
#define MB_OK
Definition: winuser.h:784
#define MAKEINTRESOURCEW(i)
Definition: winuser.h:582
#define CB_GETCURSEL
Definition: winuser.h:1933
LRESULT WINAPI SendMessageW(_In_ HWND, _In_ UINT, _In_ WPARAM, _In_ LPARAM)
#define IID_PPV_ARG(Itype, ppType)
__wchar_t WCHAR
Definition: xmlstorage.h:180