ReactOS 0.4.16-dev-1339-gd8bfa93
undocshell.h
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS Shell
3 * LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
4 * PURPOSE: Undocumented shell definitions
5 * COPYRIGHT: Copyright 1999, 2000 Juergen Schmied
6 * Copyright 2025 Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
7 */
8
9#ifndef _UNDOCSHELL_H
10#define _UNDOCSHELL_H
11
12#pragma once
13
14#include <shellapi.h>
15
16#ifndef SHSTDAPI
17#if defined(_SHELL32_) /* DECLSPEC_IMPORT disabled because of CORE-6504: */ || TRUE
18#define SHSTDAPI_(type) type WINAPI
19#else
20#define SHSTDAPI_(type) EXTERN_C DECLSPEC_IMPORT type WINAPI
21#endif
22#define SHSTDAPI SHSTDAPI_(HRESULT)
23#endif
24
25#ifdef __cplusplus
26extern "C" {
27#endif /* defined(__cplusplus) */
28
29#if (NTDDI_VERSION < NTDDI_LONGHORN)
30#define DBIMF_NOGRIPPER 0x0800
31#define DBIMF_ALWAYSGRIPPER 0x1000
32#define DBIMF_NOMARGINS 0x2000
33#endif // NTDDI_LONGHORN
34
35#if defined (_SHELLAPI_H) || defined (_INC_SHELLAPI)
36
37/****************************************************************************
38 * Taskbar interface WM_COPYDATA structures
39 * See http://www.geoffchappell.com/studies/windows/shell/shell32/api/shlnot/copydata.htm
40 */
41/* Data structure for Shell_NotifyIcon messages */
42typedef struct _TRAYNOTIFYDATAW
43{
44 DWORD dwSignature;
45 DWORD dwMessage;
46 NOTIFYICONDATAW nid; // Always use the latest NOTIFYICONDATAW structure version.
47} TRAYNOTIFYDATAW, *PTRAYNOTIFYDATAW;
48// Note: One could also introduce TRAYNOTIFYDATAA
49
50#define NI_NOTIFY_SIG 0x34753423 /* TRAYNOTIFYDATA */
51
52#endif /* defined (_SHELLAPI_H) || defined (_INC_SHELLAPI) */
53
54/****************************************************************************
55 * Taskbar WM_COMMAND identifiers
56 */
57#define TWM_DOEXITWINDOWS (WM_USER + 342)
58#define TWM_CYCLEFOCUS (WM_USER + 348)
59
60/****************************************************************************
61 * ProgMan messages
62 */
63#define WM_PROGMAN_OPENSHELLSETTINGS (WM_USER + 22) /* wParam specifies the dialog (and tab page) */
64#define WM_PROGMAN_SAVESTATE (WM_USER + 77)
65
66/****************************************************************************
67 * IDList Functions
68 */
70 LPCITEMIDLIST pidl,
71 LPVOID path);
72
73/* type parameter for ILGetDisplayNameEx() */
74#define ILGDN_FORPARSING 0
75#define ILGDN_NORMAL 1
76#define ILGDN_INFOLDER 2
77
79 LPSHELLFOLDER psf,
80 LPCITEMIDLIST pidl,
82 DWORD type);
83
84#if (NTDDI_VERSION >= NTDDI_LONGHORN) || defined(_SHELL32_)
86 _In_ IShellFolder *psf,
89 _Out_ LPWSTR pszBuf,
90 _In_ UINT cchBuf);
91#endif
92
97
100 LPITEMIDLIST * ppidl,
101 DWORD *attributes);
102
105 LPITEMIDLIST * ppidl,
106 DWORD *attributes);
107
109 HWND hWnd,
110 IShellFolder* lpFolder,
111 LPCITEMIDLIST lpApidl,
112 LPCSTR lpVerb);
116 _In_ IContextMenu* pCM,
117 _In_ UINT fCMIC,
118 _In_opt_ LPCSTR pszVerb);
120 _In_ IContextMenu *pContextMenu,
121 _In_ HWND hwnd,
122 _In_ LPCSTR lpVerb,
124
125/*
126 string functions
127*/
130
131/****************************************************************************
132 * SHChangeNotifyRegister API
133 */
134#define SHCNRF_InterruptLevel 0x0001
135#define SHCNRF_ShellLevel 0x0002
136#define SHCNRF_RecursiveInterrupt 0x1000 /* Must be combined with SHCNRF_InterruptLevel */
137#define SHCNRF_NewDelivery 0x8000 /* Messages use shared memory */
138
139/****************************************************************************
140 * SHChangeNotify
141 */
142
144{
146 // More info,,,
148
149//
150// Add missing types for print job notifications.
151//
152#define SHCNF_PRINTJOBA 0x0004
153#define SHCNF_PRINTJOBW 0x0007
154
156
157/****************************************************************************
158 * Shell Common Dialogs
159 */
160
161/* RunFileDlg flags */
162#define RFF_NOBROWSE 0x01 /* Removes the browse button */
163#define RFF_NODEFAULT 0x02 /* No default item selected */
164#define RFF_CALCDIRECTORY 0x04 /* Calculates the working directory from the file name */
165#define RFF_NOLABEL 0x08 /* Removes the edit box label */
166#define RFF_NOSEPARATEMEM 0x20 /* Removes the Separate Memory Space check box (Windows NT only) */
167
168/* RunFileFlg notification value and structure */
169#define RFN_VALIDATE (-510)
170#if 0 // Deprecated ANSI structure
171typedef struct _NMRUNFILEDLGA
172{
173 NMHDR hdr;
174 LPCSTR lpFile;
176 UINT nShow;
177} NMRUNFILEDLGA, *PNMRUNFILEDLGA, *LPNMRUNFILEDLGA;
178#endif
179typedef struct _NMRUNFILEDLGW
180{
186
190
191/* RunFileDlg notification return values */
192#define RF_OK 0x00
193#define RF_CANCEL 0x01
194#define RF_RETRY 0x02
195
196void WINAPI RunFileDlg(
197 HWND hWndOwner,
198 HICON hIcon,
199 LPCWSTR lpstrDirectory,
200 LPCWSTR lpstrTitle,
201 LPCWSTR lpstrDescription,
202 UINT uFlags);
203
204int WINAPI LogoffWindowsDialog(HWND hWndOwner);
205void WINAPI ExitWindowsDialog(HWND hWndOwner);
206
208 LPCITEMIDLIST pidlRoot,
209 LPCITEMIDLIST pidlSavedSearch);
210
211void WINAPI SHHandleDiskFull(HWND hwndOwner,
212 UINT uDrive);
213
215 HWND hwndOwner,
216 LPCSTR lpCaption,
217 UINT uType);
218
220
222 HWND hwndOwner,
223 LPCWSTR lpstrRemoteName,
224 DWORD dwType);
225
227
230 _Out_writes_to_(*puSize, *puSize) PWSTR pName,
231 _Inout_ PULONG puSize);
232
233/****************************************************************************
234 * Cabinet Window Messages
235 */
236
237#define CWM_SETPATH (WM_USER + 2)
238#define CWM_WANTIDLE (WM_USER + 3)
239#define CWM_GETSETCURRENTINFO (WM_USER + 4)
240#define CWM_SELECTITEM (WM_USER + 5)
241#define CWM_SELECTITEMSTR (WM_USER + 6)
242#define CWM_GETISHELLBROWSER (WM_USER + 7)
243#define CWM_TESTPATH (WM_USER + 9)
244#define CWM_STATECHANGE (WM_USER + 10)
245#define CWM_GETPATH (WM_USER + 12)
246
247#define WM_GETISHELLBROWSER CWM_GETISHELLBROWSER
248
249/* CWM_TESTPATH types */
250#define CWTP_ISEQUAL 0
251#define CWTP_ISCHILD 1
252
253/* CWM_TESTPATH structure */
254typedef struct
255{
259
260/****************************************************************************
261 * System Imagelist Routines
262 */
263
265 LPCSTR lpszFileName,
266 int nIconIndex,
267 UINT bSimulateDoc);
268
270 HIMAGELIST *lphimlLarge,
271 HIMAGELIST *lphimlSmall);
272
275 LPCSTR lpszPath,
277 UINT uFlags);
278
279BOOL WINAPI FileIconInit(BOOL bFullInit);
280
283 _In_ HANDLE hHandle,
285 _In_ WORD wIndex,
286 _Out_ LPWORD lpSize,
287 _Out_ LPHANDLE lpIcon);
288
291 _In_ HANDLE hHandle,
293 _In_ WORD wIndex,
294 _Out_ LPWORD lpSize,
295 _Out_ LPHANDLE lpIcon);
296
297/****************************************************************************
298 * File Menu Routines
299 */
300
301/* FileMenu_Create nSelHeight constants */
302#define FM_DEFAULT_SELHEIGHT -1
303#define FM_FULL_SELHEIGHT 0
304
305/* FileMenu_Create flags */
306#define FMF_SMALL_ICONS 0x00
307#define FMF_LARGE_ICONS 0x08
308#define FMF_NO_COLUMN_BREAK 0x10
309
311 COLORREF crBorderColor,
312 int nBorderWidth,
313 HBITMAP hBorderBmp,
314 int nSelHeight,
315 UINT uFlags);
316
317void WINAPI FileMenu_Destroy(HMENU hMenu);
318
319/* FileMenu_AppendItem constants */
320#define FM_SEPARATOR (LPCSTR)1
321#define FM_BLANK_ICON -1
322#define FM_DEFAULT_HEIGHT 0
323
325 HMENU hMenu,
326 LPCSTR lpszText,
327 UINT uID,
328 int iIcon,
329 HMENU hMenuPopup,
330 int nItemHeight);
331
332/* FileMenu_InsertUsingPidl flags */
333#define FMF_NO_EMPTY_ITEM 0x01
334#define FMF_NO_PROGRAM_GROUPS 0x04
335
336/* FileMenu_InsertUsingPidl callback function */
337typedef void (CALLBACK *LPFNFMCALLBACK)(LPCITEMIDLIST pidlFolder, LPCITEMIDLIST pidlFile);
338
340 HMENU hMenu,
341 UINT uID,
342 LPCITEMIDLIST pidl,
343 UINT uFlags,
344 UINT uEnumFlags,
345 LPFNFMCALLBACK lpfnCallback);
346
348 HMENU hMenu,
349 UINT uID,
350 LPCITEMIDLIST pidl,
351 UINT uEnumFlags,
352 LPFNFMCALLBACK lpfnCallback);
353
355
357 HMENU hMenu,
358 LPCITEMIDLIST pidl);
359
361 HMENU hMenu,
362 UINT uFlags,
363 int x,
364 int y,
365 HWND hWnd,
366 LPTPMPARAMS lptpm);
367
369 UINT uReserved,
370 LPCITEMIDLIST *ppidlFolder,
371 LPCITEMIDLIST *ppidlItem);
372
374 HWND hWnd,
375 LPMEASUREITEMSTRUCT lpmis);
376
378 HWND hWnd,
379 LPDRAWITEMSTRUCT lpdis);
380
382
384
386 HMENU hMenu,
387 WPARAM wParam);
388
390
392 HMENU hMenu,
393 UINT uID);
394
396 HMENU hMenu,
397 UINT uPos);
398
400 HMENU hMenu,
401 UINT uID);
402
404
406 HMENU hMenu,
407 UINT uID,
408 BOOL bEnable);
409
411 HMENU hMenu,
412 UINT uPos);
413
415 HMENU hMenu,
416 LPCITEMIDLIST pidl,
417 BOOL bAddSeparator);
418
420 HMENU hMenu,
421 UINT uReserved,
422 UINT uID,
423 LPCITEMIDLIST pidl,
424 UINT uFlags,
425 UINT uEnumFlags,
426 LPFNFMCALLBACK lpfnCallback);
427
428/****************************************************************************
429 * Drag And Drop Routines
430 */
431
433 HWND hWnd,
434 LPDROPTARGET lpDropTarget);
435
437
439
441 HWND hWnd,
442 POINT pt);
443
445
446/****************************************************************************
447 * Path Manipulation Routines
448 */
449
450BOOL WINAPI PathAppendAW(LPVOID lpszPath1, LPCVOID lpszPath2);
451
452LPVOID WINAPI PathCombineAW(LPVOID szDest, LPCVOID lpszDir, LPCVOID lpszFile);
453
455
457
459
461
463
465
467
469
471
473
475
477
479
481
483
485
487
489 LPVOID lpszBuffer,
490 DWORD dwBuffSize,
491 LPCVOID lpszShortName,
492 LPCVOID lpszLongName,
493 LPCVOID lpszPathName);
494
496 LPWSTR lpszBuffer,
497 LPCWSTR lpszPathName,
498 LPCWSTR lpszShortName,
499 LPCWSTR lpszLongName);
500
504
505/* PathResolve flags */
506#define PRF_CHECKEXISTANCE 0x01
507#define PRF_EXECUTABLE 0x02
508#define PRF_QUALIFYONPATH 0x04
509#define PRF_WINDOWS31 0x08
510
513BOOL WINAPI PathResolveAW(LPVOID lpszPath, LPCVOID *alpszPaths, DWORD dwFlags);
514
516
517/* PathProcessCommand flags */
518#define PPCF_QUOTEPATH 0x01 /* implies PPCF_INCLUDEARGS */
519#define PPCF_INCLUDEARGS 0x02
520//#define PPCF_NODIRECTORIES 0x10 move to shlobj
521#define PPCF_DONTRESOLVE 0x20
522#define PPCF_PATHISRELATIVE 0x40
523
525 DWORD dwBuffSize, DWORD dwFlags);
526
528
530
532
534
536
538
540
541BOOL WINAPI PathIsEqualOrSubFolder(_In_ LPCWSTR pszFile1OrCSIDL, _In_ LPCWSTR pszFile2);
542
545
546/****************************************************************************
547 * Shell File Operations error codes - SHFileOperationA/W
548 */
549
550/* Error codes could be pre-Win32 */
551#define DE_SAMEFILE 0x71
552#define DE_MANYSRC1DEST 0x72
553#define DE_DIFFDIR 0x73
554#define DE_ROOTDIR 0x74
555#define DE_OPCANCELLED 0x75
556#define DE_DESTSUBTREE 0x76
557#define DE_ACCESSDENIEDSRC 0x78
558#define DE_PATHTOODEEP 0x79
559#define DE_MANYDEST 0x7A
560#define DE_INVALIDFILES 0x7C
561#define DE_DESTSAMETREE 0x7D
562#define DE_FLDDESTISFILE 0x7E
563#define DE_FILEDESTISFLD 0x80
564#define DE_FILENAMETOOLONG 0x81
565#define DE_DEST_IS_CDROM 0x82
566#define DE_DEST_IS_DVD 0x83
567#define DE_DEST_IS_CDRECORD 0x84
568#define DE_FILE_TOO_LARGE 0x85
569#define DE_SRC_IS_CDROM 0x86
570#define DE_SRC_IS_DVD 0x87
571#define DE_SRC_IS_CDRECORD 0x88
572// #define DE_ERROR_MAX
573#define ERRORONDEST 0x10000
574
575/****************************************************************************
576 * Shell settings
577 */
578
579typedef struct _REGSHELLSTATE
580{
584#define REGSHELLSTATE_SIZE 0x24
585#define REGSHELLSTATE_VERSION 0xD
587
588/****************************************************************************
589 * Shell Namespace Routines
590 */
591
592/* Generic structure used by several messages */
593typedef struct
594{
600typedef const SFVCBINFO *LPCSFVCBINFO;
601
602/* SFVCB_SELECTIONCHANGED structure */
603typedef struct
604{
611
612/* SFVCB_COPYHOOKCALLBACK structure */
613typedef struct
614{
624
625/* SFVCB_GETDETAILSOF structure */
626typedef struct
627{
629 int fmt;
630 int cx;
633
634/****************************************************************************
635 * Misc Stuff
636 */
637
639RegenerateUserEnvironment(LPVOID *lpEnvironment, BOOL bUpdateSelf);
640
641/* SHWaitForFileToOpen flags */
642#define SHWFF_ADD 0x01
643#define SHWFF_REMOVE 0x02
644#define SHWFF_WAIT 0x04
645
647 LPCITEMIDLIST pidl,
650
654 LPCRECT lpRect,
655 WORD cKids,
656 CONST HWND * lpKids);
657
658/* Flags for ShellExecCmdLine */
659#define SECL_NO_UI 0x2
660#define SECL_LOG_USAGE 0x8
661#define SECL_USE_IDLIST 0x10
662#define SECL_ALLOW_NONEXE 0x20
663#define SECL_RUNAS 0x40
664
666 HWND hwnd,
667 LPCWSTR pwszCommand,
668 LPCWSTR pwszStartDir,
669 int nShow,
670 LPVOID pUnused,
671 DWORD dwSeclFlags);
672
673/*
674 * Undocumented SEE_MASK_* flags for the SHELLEXECUTEINFO::fMask member
675 * used by ShellExecuteEx(). These are absent from the official Windows SDK.
676 * However they are used in shobjidl.idl to define some CMIC_MASK_* flags,
677 * these ones being mentioned in the MSDN documentation of the
678 * CMINVOKECOMMANDINFOEX structure.
679 */
680#define SEE_MASK_UNKNOWN_0x1000 0x00001000 // FIXME: Name
681#define SEE_MASK_NO_HOOKS 0x00002000 // https://www.yisu.com/ask/30968554.html
682#define SEE_MASK_HASLINKNAME 0x00010000
683#define SEE_MASK_FLAG_SEPVDM 0x00020000
684#define SEE_MASK_USE_RESERVED 0x00040000
685#define SEE_MASK_HASTITLE 0x00080000
686#define SEE_MASK_FILEANDURL 0x00400000 // https://textslashplain.com/2019/09/25/web-to-app-communication-directinvoke/
687
691 _In_opt_ LPCSTR lpOperation,
692 _In_opt_ LPCSTR lpFile,
693 _In_opt_ LPCSTR lpParameters,
695 _In_opt_ LPSTR lpReturn,
698 _In_ INT nCmdShow,
699 _Out_opt_ PHANDLE lphProcess);
700
704 _In_opt_ LPCWSTR lpOperation,
705 _In_opt_ LPCWSTR lpFile,
706 _In_opt_ LPCWSTR lpParameters,
708 _In_opt_ LPWSTR lpReturn,
711 _In_ INT nCmdShow,
712 _Out_opt_ PHANDLE lphProcess);
713
717 _In_opt_ LPCSTR lpOperation,
718 _In_opt_ LPCSTR lpFile,
719 _In_opt_ LPCSTR lpParameters,
721 _In_opt_ LPSTR lpReturn,
724 _In_ INT nCmdShow,
725 _Out_opt_ PHANDLE lphProcess,
727
731 _In_opt_ LPCWSTR lpOperation,
732 _In_opt_ LPCWSTR lpFile,
733 _In_opt_ LPCWSTR lpParameters,
735 _In_opt_ LPWSTR lpReturn,
738 _In_ INT nCmdShow,
739 _Out_opt_ PHANDLE lphProcess,
741
746 _In_ PCSTR pszCmdLine,
747 _In_ INT nCmdShow);
748
753 _In_ PCSTR pszCmdLine,
754 _In_ INT nCmdShow);
755
760 _In_ PCWSTR pszCmdLine,
761 _In_ INT nCmdShow);
762
763/* RegisterShellHook types */
764#define RSH_DEREGISTER 0
765#define RSH_REGISTER 1
766#define RSH_REGISTER_PROGMAN 2
767#define RSH_REGISTER_TASKMAN 3
768
770 HWND hWnd,
771 DWORD dwType);
772
773/* SHCreateDefClassObject callback function */
775 LPUNKNOWN pUnkOuter,
776 REFIID riidObject,
778
780 REFIID riidFactory,
781 LPVOID *ppvFactory,
782 LPFNCDCOCALLBACK lpfnCallback,
783 LPDWORD lpdwUsage,
784 REFIID riidObject);
785
787
789 _In_opt_ LPCWSTR aclsid,
790 _In_opt_ const CLSID *clsid,
791 _In_opt_ LPUNKNOWN pUnkOuter,
792 _In_ REFIID refiid,
793 _Out_ LPVOID *ppv);
794
795/* SHCreateLinks flags */
796#define SHCLF_PREFIXNAME 0x01
797#define SHCLF_CREATEONDESKTOP 0x02
798
800 HWND hWnd,
801 LPCSTR lpszDir,
802 LPDATAOBJECT lpDataObject,
803 UINT uFlags,
804 LPITEMIDLIST *lppidlLinks);
805
808
809/* policy functions */
811
812#define CSIDL_FOLDER_MASK 0x00ff
813
814/* Utility functions */
815#include <stdio.h>
816
817#define SMC_EXEC 4
819
822HRESULT WINAPI SHGetImageList(int iImageList, REFIID riid, void **ppv);
823
825 _In_ PCSTR psz,
826 _Out_ LPGUID pguid);
827
829 _In_ PCWSTR psz,
830 _Out_ LPGUID pguid);
831
834 _In_ PCSTR pszSrc,
835 _In_opt_ PCSTR pszLast,
836 _In_ PCSTR pszSearch);
837
840 _In_ PCWSTR pszSrc,
841 _In_opt_ PCWSTR pszLast,
842 _In_ PCWSTR pszSearch);
843
846
847/* Flags for Int64ToString and LargeIntegerToString */
848#define FMT_USE_NUMDIGITS 0x01
849#define FMT_USE_LEADZERO 0x02
850#define FMT_USE_GROUPING 0x04
851#define FMT_USE_DECIMAL 0x08
852#define FMT_USE_THOUSAND 0x10
853#define FMT_USE_NEGNUMBER 0x20
854
857 _In_ LONGLONG llValue,
858 _Out_writes_z_(cchOut) LPWSTR pszOut,
859 _In_ UINT cchOut,
860 _In_ BOOL bUseFormat,
861 _In_opt_ const NUMBERFMTW *pNumberFormat,
862 _In_ DWORD dwNumberFlags);
863
866 _In_ const LARGE_INTEGER *pLargeInt,
867 _Out_writes_z_(cchOut) LPWSTR pszOut,
868 _In_ UINT cchOut,
869 _In_ BOOL bUseFormat,
870 _In_opt_ const NUMBERFMTW *pNumberFormat,
871 _In_ DWORD dwNumberFlags);
872
875 _In_ DWORD dwNumber,
876 _Out_writes_(0x8FFF) LPWSTR pszBuffer);
877
880
882
885 _In_z_ LPCWSTR pszName,
888
891
893
896 _In_ HWND hwnd,
899 _In_ INT cmdshow);
900
902
903/*****************************************************************************
904 * Shell32 resources
905 */
906// these resources are in shell32.dll
907#define IDB_GOBUTTON_NORMAL 0x0e6
908#define IDB_GOBUTTON_HOT 0x0e7
909
910// band ids in internet toolbar
911#define ITBBID_MENUBAND 1
912#define ITBBID_BRANDBAND 5
913#define ITBBID_TOOLSBAND 2
914#define ITBBID_ADDRESSBAND 4
915
916// commands in the CGID_PrivCITCommands command group handled by the internet toolbar
917// there seems to be some support for hiding the menubar and an auto hide feature that are
918// unavailable in the UI
919#define ITID_TEXTLABELS 3
920#define ITID_TOOLBARBANDSHOWN 4
921#define ITID_ADDRESSBANDSHOWN 5
922#define ITID_LINKSBANDSHOWN 6
923#define ITID_MENUBANDSHOWN 12
924#define ITID_AUTOHIDEENABLED 13
925#define ITID_CUSTOMIZEENABLED 20
926#define ITID_TOOLBARLOCKED 27
927
928// commands in the CGID_BrandCmdGroup command group handled by the brand band
929#define BBID_STARTANIMATION 1
930#define BBID_STOPANIMATION 2
931
932// undocumented flags for IShellMenu::SetShellFolder
933#define SMSET_UNKNOWN08 0x08
934#define SMSET_UNKNOWN10 0x10
935
936// explorer tray commands
937#define TRAYCMD_STARTMENU 305
938#define TRAYCMD_RUN_DIALOG 401
939#define TRAYCMD_LOGOFF_DIALOG 402
940#define TRAYCMD_CASCADE 403
941#define TRAYCMD_TILE_H 404
942#define TRAYCMD_TILE_V 405
943#define TRAYCMD_TOGGLE_DESKTOP 407
944#define TRAYCMD_DATE_AND_TIME 408
945#define TRAYCMD_TASKBAR_PROPERTIES 413
946#define TRAYCMD_MINIMIZE_ALL 415
947#define TRAYCMD_RESTORE_ALL 416
948#define TRAYCMD_SHOW_DESKTOP 419
949#define TRAYCMD_SHOW_TASK_MGR 420
950#define TRAYCMD_CUSTOMIZE_TASKBAR 421
951#define TRAYCMD_LOCK_TASKBAR 424
952#define TRAYCMD_HELP_AND_SUPPORT 503
953#define TRAYCMD_CONTROL_PANEL 505
954#define TRAYCMD_SHUTDOWN_DIALOG 506
955#define TRAYCMD_PRINTERS_AND_FAXES 510
956#define TRAYCMD_LOCK_DESKTOP 517
957#define TRAYCMD_SWITCH_USER_DIALOG 5000
958#define TRAYCMD_SEARCH_FILES 41093
959#define TRAYCMD_SEARCH_COMPUTERS 41094
960
961// Explorer Tray Application Bar Data Message Commands
962#define TABDMC_APPBAR 0
963#define TABDMC_NOTIFY 1
964#define TABDMC_LOADINPROC 2
965
966void WINAPI ShellDDEInit(BOOL bInit);
967
969
970HRESULT WINAPI SHCreateSessionKey(REGSAM samDesired, PHKEY phKey);
971
973 HKEY hkey,
974 LPCSTR lpValueName,
976 LPDWORD lpType,
977 LPBYTE lpData,
978 LPDWORD lpcbData);
979
981 HKEY hkey,
982 LPCWSTR pszValue,
984 LPDWORD pdwType,
987
988#ifdef UNICODE
989#define SHRegQueryValueEx SHRegQueryValueExW
990#else
991#define SHRegQueryValueEx SHRegQueryValueExA
992#endif
993
996 _In_ LPCVOID pv,
997 _In_ UINT_PTR ucb);
998
1001 _In_ IStream *pSrc,
1002 _Out_ IStream *pDst,
1003 _Inout_opt_ IProgressDialog *pProgress,
1004 _In_opt_ DWORDLONG dwlSize);
1005
1006// Flags for SHGetComputerDisplayNameW
1007#define SHGCDN_NOCACHE 0x1
1008#define SHGCDN_NOSERVERNAME 0x10000
1009
1012 _In_opt_ LPWSTR pszServerName,
1014 _Out_writes_z_(cchNameMax) LPWSTR pszName,
1015 _In_ DWORD cchNameMax);
1016
1017/*****************************************************************************
1018 * INVALID_FILETITLE_CHARACTERS
1019 */
1020
1021#define INVALID_FILETITLE_CHARACTERSA "\\/:*?\"<>|"
1022#define INVALID_FILETITLE_CHARACTERSW L"\\/:*?\"<>|"
1023
1024#ifdef UNICODE
1025 #define INVALID_FILETITLE_CHARACTERS INVALID_FILETITLE_CHARACTERSW
1026#else
1027 #define INVALID_FILETITLE_CHARACTERS INVALID_FILETITLE_CHARACTERSA
1028#endif
1029
1030/*****************************************************************************
1031 * Shell Link
1032 */
1033#include <pshpack1.h>
1034
1036{
1037 /* The size of this structure (always 0x0000004C) */
1039 /* CLSID = class identifier (always 00021401-0000-0000-C000-000000000046) */
1041 /* Flags (SHELL_LINK_DATA_FLAGS) */
1043 /* Informations about the link target: */
1048 DWORD nFileSizeLow; /* only the least significant 32 bits */
1049 /* The index of an icon (signed?) */
1051 /* The expected window state of an application launched by the link */
1053 /* The keystrokes used to launch the application */
1055 /* Reserved (must be zero) */
1060
1061/*****************************************************************************
1062 * SHELL_LINK_INFOA/W
1063 * If cbHeaderSize == 0x0000001C then use SHELL_LINK_INFOA
1064 * If cbHeaderSize >= 0x00000024 then use SHELL_LINK_INFOW
1065 */
1067{
1068 /* Size of the link info data */
1070 /* Size of this structure (ANSI: = 0x0000001C) */
1072 /* Specifies which fields are present/populated (SLI_*) */
1074 /* Offset of the VolumeID field (SHELL_LINK_INFO_VOLUME_ID) */
1076 /* Offset of the LocalBasePath field (ANSI, NULL-terminated string) */
1078 /* Offset of the CommonNetworkRelativeLink field (SHELL_LINK_INFO_CNR_LINK) */
1080 /* Offset of the CommonPathSuffix field (ANSI, NULL-terminated string) */
1083
1085{
1086 /* Size of the link info data */
1088 /* Size of this structure (Unicode: >= 0x00000024) */
1090 /* Specifies which fields are present/populated (SLI_*) */
1092 /* Offset of the VolumeID field (SHELL_LINK_INFO_VOLUME_ID) */
1094 /* Offset of the LocalBasePath field (ANSI, NULL-terminated string) */
1096 /* Offset of the CommonNetworkRelativeLink field (SHELL_LINK_INFO_CNR_LINK) */
1098 /* Offset of the CommonPathSuffix field (ANSI, NULL-terminated string) */
1100 /* Offset of the LocalBasePathUnicode field (Unicode, NULL-terminated string) */
1102 /* Offset of the CommonPathSuffixUnicode field (Unicode, NULL-terminated string) */
1105
1106/* VolumeID, LocalBasePath, LocalBasePathUnicode(cbHeaderSize >= 0x24) are present */
1107#define SLI_VALID_LOCAL 0x00000001
1108/* CommonNetworkRelativeLink is present */
1109#define SLI_VALID_NETWORK 0x00000002
1110
1111/*****************************************************************************
1112 * SHELL_LINK_INFO_VOLUME_IDA/W
1113 * If cbVolumeLabelOffset != 0x00000014 (should be 0x00000010) then use
1114 * SHELL_LINK_INFO_VOLUME_IDA
1115 * If cbVolumeLabelOffset == 0x00000014 then use SHELL_LINK_INFO_VOLUME_IDW
1116 */
1118{
1119 /* Size of the VolumeID field (> 0x00000010) */
1121 /* Drive type of the drive the link target is stored on (DRIVE_*) */
1123 /* Serial number of the volume the link target is stored on */
1125 /* Offset of the volume label (ANSI, NULL-terminated string).
1126 Must be != 0x00000014 (see tagSHELL_LINK_INFO_VOLUME_IDW) */
1129
1131{
1132 /* Size of the VolumeID field (> 0x00000010) */
1134 /* Drive type of the drive the link target is stored on (DRIVE_*) */
1136 /* Serial number of the volume the link target is stored on */
1138 /* Offset of the volume label (ANSI, NULL-terminated string).
1139 If the value of this field is 0x00000014, ignore it and use
1140 cbVolumeLabelUnicodeOffset! */
1142 /* Offset of the volume label (Unicode, NULL-terminated string).
1143 If the value of the VolumeLabelOffset field is not 0x00000014,
1144 this field must be ignored (==> it doesn't exists ==> ANSI). */
1147
1148/*****************************************************************************
1149 * SHELL_LINK_INFO_CNR_LINKA/W (CNR = Common Network Relative)
1150 * If cbNetNameOffset == 0x00000014 then use SHELL_LINK_INFO_CNR_LINKA
1151 * If cbNetNameOffset > 0x00000014 then use SHELL_LINK_INFO_CNR_LINKW
1152 */
1154{
1155 /* Size of the CommonNetworkRelativeLink field (>= 0x00000014) */
1157 /* Specifies which fields are present/populated (SLI_CNR_*) */
1159 /* Offset of the NetName field (ANSI, NULL–terminated string) */
1161 /* Offset of the DeviceName field (ANSI, NULL–terminated string) */
1163 /* Type of the network provider (WNNC_NET_* defined in winnetwk.h) */
1166
1168{
1169 /* Size of the CommonNetworkRelativeLink field (>= 0x00000014) */
1171 /* Specifies which fields are present/populated (SLI_CNR_*) */
1173 /* Offset of the NetName field (ANSI, NULL–terminated string) */
1175 /* Offset of the DeviceName field (ANSI, NULL–terminated string) */
1177 /* Type of the network provider (WNNC_NET_* defined in winnetwk.h) */
1179 /* Offset of the NetNameUnicode field (Unicode, NULL–terminated string) */
1181 /* Offset of the DeviceNameUnicode field (Unicode, NULL–terminated string) */
1184
1185/* DeviceName is present */
1186#define SLI_CNR_VALID_DEVICE 0x00000001
1187/* NetworkProviderType is present */
1188#define SLI_CNR_VALID_NET_TYPE 0x00000002
1189
1190/*****************************************************************************
1191 * Shell Link Extra Data (IShellLinkDataList)
1192 */
1193typedef struct tagEXP_TRACKER
1194{
1195 /* .cbSize = 0x00000060, .dwSignature = 0xa0000003 */
1197 /* Length >= 0x00000058 */
1199 /* Must be 0x00000000 */
1201 /* NetBIOS name (ANSI, unused bytes are set to zero) */
1202 CHAR szMachineID[16]; /* "variable" >= 16 (?) */
1203 /* Some GUIDs for the Link Tracking service (from the FS?) */
1209
1210typedef struct tagEXP_SHIM
1211{
1212 /* .cbSize >= 0x00000088, .dwSignature = 0xa0000008 */
1214 /* Name of a shim layer to apply (Unicode, unused bytes are set to zero) */
1215 WCHAR szwLayerName[64]; /* "variable" >= 64 */
1217
1219{
1220 /* .cbSize = 0x0000001c, .dwSignature = 0xa000000b */
1222 /* A GUID value that identifies a known folder */
1224 /* Specifies the location of the ItemID of the first child
1225 segment of the IDList specified by guidKnownFolder */
1228
1230{
1231 /* .cbSize >= 0x0000000a, .dwSignature = 0xa000000c */
1233 /* Specifies an alternate IDList that can be used instead
1234 of the "normal" IDList (SLDF_HAS_ID_LIST) */
1235 /* LPITEMIDLIST pIDList; (variable) */
1237
1238#define EXP_TRACKER_SIG 0xa0000003
1239#define EXP_SHIM_SIG 0xa0000008
1240#define EXP_KNOWN_FOLDER_SIG 0xa000000b
1241#define EXP_VISTA_ID_LIST_SIG 0xa000000c
1242
1243/* Not compatible yet */
1245{
1251
1252#include <poppack.h>
1253
1254#if defined(_WIN64) || defined(BUILD_WOW6432)
1255 typedef UINT64 APPBAR_OUTPUT;
1256#else
1258#endif
1259
1260/*
1261 * Private structures for internal AppBar messaging.
1262 * These structures can be sent from 32-bit shell32 to 64-bit Explorer.
1263 * See also: https://learn.microsoft.com/en-us/windows/win32/winprog64/interprocess-communication
1264 * > ... only the lower 32 bits are significant, so it is safe to truncate the handle
1265 * See also: https://learn.microsoft.com/en-us/windows/win32/api/handleapi/nf-handleapi-duplicatehandle
1266 * > DuplicateHandle can be used to duplicate a handle between a 32-bit process and a 64-bit process.
1267 */
1268#include <pshpack8.h>
1270{
1271 DWORD cbSize; /* == sizeof(APPBARDATAINTEROP) */
1278typedef struct tagAPPBAR_COMMAND
1279{
1282 APPBAR_OUTPUT hOutput; /* For shlwapi!SHAllocShared */
1285#include <poppack.h>
1286
1287#if defined(_WIN64) || defined(BUILD_WOW6432)
1288C_ASSERT(sizeof(APPBAR_COMMAND) == 0x40);
1289#else
1290C_ASSERT(sizeof(APPBAR_COMMAND) == 0x38);
1291#endif
1292
1293#ifdef __cplusplus
1294} /* extern "C" */
1295#endif /* defined(__cplusplus) */
1296
1297#endif /* _UNDOCSHELL_H */
unsigned long long UINT64
unsigned int UINT32
DWORD dwFileAttributes
#define ShellExecCmdLine
HWND hWnd
Definition: settings.c:17
HINSTANCE hInstance
Definition: charmap.c:19
WPARAM wParam
Definition: combotst.c:138
LPARAM lParam
Definition: combotst.c:139
static HWND hwndParent
Definition: cryptui.c:300
TCHAR lpTitle[80]
Definition: ctm.c:69
UINT uFlags
Definition: api.c:59
#define CALLBACK
Definition: compat.h:35
static void *static void *static LPDIRECTPLAY IUnknown * pUnk
Definition: dplayx.c:30
#define pt(x, y)
Definition: drawing.c:79
_In_ PUNKNOWN pUnknown
Definition: drmk.h:76
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
unsigned short WORD
Definition: ntddk_ex.h:93
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLuint GLuint GLsizei GLenum type
Definition: gl.h:1545
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
GLbitfield flags
Definition: glext.h:7161
GLenum GLsizei len
Definition: glext.h:6722
REFIID riid
Definition: atlbase.h:39
REFIID LPVOID * ppv
Definition: atlbase.h:39
unsigned long long DWORDLONG
Definition: intsafe.h:93
#define C_ASSERT(e)
Definition: intsafe.h:73
char hdr[14]
Definition: iptest.cpp:33
NOTIFYICONDATA nid
Definition: magnifier.c:44
LPCWSTR szPath
Definition: env.c:37
static LPSTR pName
Definition: security.c:75
static HBITMAP
Definition: button.c:44
static HINSTANCE hinst
Definition: edit.c:551
static HICON
Definition: imagelist.c:80
static const CLSID *static CLSID *static const GUID VARIANT VARIANT *static IServiceProvider DWORD *static HMENU
Definition: ordinal.c:63
WORD unused[29]
Definition: crypt.c:1155
HICON hIcon
Definition: msconfig.c:44
REFCLSID clsid
Definition: msctf.c:82
unsigned __int3264 UINT_PTR
Definition: mstsclib_h.h:274
_In_ HANDLE _In_ DWORD _In_ DWORD _Inout_opt_ LPOVERLAPPED _In_opt_ LPTRANSMIT_FILE_BUFFERS _In_ DWORD dwReserved
Definition: mswsock.h:95
unsigned int UINT
Definition: ndis.h:50
static LPUNKNOWN
Definition: ndr_ole.c:49
#define _Out_writes_z_(s)
Definition: no_sal2.h:180
#define _Out_opt_
Definition: no_sal2.h:214
#define _Inout_
Definition: no_sal2.h:162
#define _In_z_
Definition: no_sal2.h:164
#define _Inout_opt_
Definition: no_sal2.h:216
#define _Out_writes_(s)
Definition: no_sal2.h:176
#define _Out_
Definition: no_sal2.h:160
#define _In_
Definition: no_sal2.h:158
#define _In_opt_
Definition: no_sal2.h:212
#define _Out_writes_to_(s, c)
Definition: no_sal2.h:188
PVOID *typedef PHANDLE
Definition: ntsecpkg.h:455
interface IDataObject * LPDATAOBJECT
Definition: objfwd.h:21
#define CONST
Definition: pedump.c:81
long LONG
Definition: pedump.c:60
#define REFIID
Definition: guiddef.h:118
_In_opt_ LPCSTR lpDirectory
Definition: shellapi.h:496
ITEMIDLIST UNALIGNED * LPITEMIDLIST
Definition: shtypes.idl:41
const ITEMIDLIST UNALIGNED * LPCITEMIDLIST
Definition: shtypes.idl:42
TCHAR * cmdline
Definition: stretchblt.cpp:32
ITEMIDLIST idl
Definition: undocshell.h:257
LPDWORD lpdwUser
Definition: undocshell.h:598
DWORD dwReserved
Definition: undocshell.h:595
LPCITEMIDLIST pidl
Definition: undocshell.h:597
DWORD dwReserved2
Definition: undocshell.h:596
LPCITEMIDLIST pidl
Definition: undocshell.h:628
STRRET lpText
Definition: undocshell.h:631
DWORD dwDestAttribs
Definition: undocshell.h:621
DWORD dwSrcAttribs
Definition: undocshell.h:619
LPCSTR pszSrcFile
Definition: undocshell.h:618
LPCSTR pszDestFile
Definition: undocshell.h:620
LPCITEMIDLIST pidl
Definition: undocshell.h:607
LPDWORD lpdwUser
Definition: undocshell.h:608
LPCWSTR lpFile
Definition: undocshell.h:182
LPCWSTR lpDirectory
Definition: undocshell.h:183
SHELLSTATE ss
Definition: undocshell.h:582
APPBAR_OUTPUT hOutput
Definition: undocshell.h:1282
APPBARDATAINTEROP abd
Definition: undocshell.h:1280
DATABLOCK_HEADER dbh
Definition: undocshell.h:1221
WCHAR szwLayerName[64]
Definition: undocshell.h:1215
DATABLOCK_HEADER dbh
Definition: undocshell.h:1213
CHAR szMachineID[16]
Definition: undocshell.h:1202
GUID guidDroidObject
Definition: undocshell.h:1205
DATABLOCK_HEADER dbh
Definition: undocshell.h:1196
GUID guidDroidBirthVolume
Definition: undocshell.h:1206
GUID guidDroidVolume
Definition: undocshell.h:1204
GUID guidDroidBirthObject
Definition: undocshell.h:1207
DATABLOCK_HEADER dbh
Definition: undocshell.h:1232
uint16_t * PWSTR
Definition: typedefs.h:56
uint32_t * PULONG
Definition: typedefs.h:59
char * PSTR
Definition: typedefs.h:51
const uint16_t * PCWSTR
Definition: typedefs.h:57
unsigned char * LPBYTE
Definition: typedefs.h:53
uint16_t * LPWORD
Definition: typedefs.h:56
int64_t LONGLONG
Definition: typedefs.h:68
uint32_t * LPDWORD
Definition: typedefs.h:59
int32_t INT
Definition: typedefs.h:58
const char * PCSTR
Definition: typedefs.h:52
uint32_t ULONG
Definition: typedefs.h:59
LPITEMIDLIST WINAPI SHSimpleIDListFromPathA(LPCSTR lpszPath)
Definition: pidl.c:1217
int WINAPI FileMenu_AppendFilesForPidl(HMENU hMenu, LPCITEMIDLIST pidl, BOOL bAddSeparator)
Definition: shlmenu.c:478
HANDLE APPBAR_OUTPUT
Definition: undocshell.h:1257
LONG WINAPI SHRegQueryValueExW(HKEY hkey, LPCWSTR pszValue, LPDWORD pdwReserved, LPDWORD pdwType, LPVOID pvData, LPDWORD pcbData)
Definition: shellreg.c:108
LPVOID WINAPI PathBuildRootAW(LPVOID lpszPath, int drive)
BOOL WINAPI DAD_DragEnter(HWND hWnd)
Definition: shellord.c:1746
BOOL WINAPI PathIsTemporaryA(_In_ LPCSTR Str)
BOOL WINAPI GUIDFromStringA(_In_ PCSTR psz, _Out_ LPGUID pguid)
struct SFVSELECTSTATE * LPSFVSELECTSTATE
BOOL WINAPI FileMenu_DeleteItemByIndex(HMENU hMenu, UINT uPos)
Definition: shlmenu.c:727
BOOL WINAPI SHSettingsChanged(LPCVOID unused, LPCWSTR pszKey)
Definition: shpolicy.c:203
BOOL WINAPI IsSuspendAllowed(VOID)
Definition: utils.cpp:850
int WINAPI FileMenu_AddFilesForPidl(HMENU hMenu, UINT uReserved, UINT uID, LPCITEMIDLIST pidl, UINT uFlags, UINT uEnumFlags, LPFNFMCALLBACK lpfnCallback)
Definition: shlmenu.c:504
BOOL WINAPI SHFindComputer(LPCITEMIDLIST pidlRoot, LPCITEMIDLIST pidlSavedSearch)
Definition: utils.cpp:1171
struct tagSHELL_LINK_INFO_VOLUME_IDW * LPSHELL_LINK_INFO_VOLUME_IDW
struct SFVCBINFO * LPSFVCBINFO
int WINAPI FileMenu_ReplaceUsingPidl(HMENU hMenu, UINT uID, LPCITEMIDLIST pidl, UINT uEnumFlags, LPFNFMCALLBACK lpfnCallback)
Definition: shlmenu.c:439
struct tagSHELL_LINK_INFOW SHELL_LINK_INFOW
struct tagAPPBARDATAINTEROP * PAPPBARDATAINTEROP
const SFVCBINFO * LPCSFVCBINFO
Definition: undocshell.h:600
VOID WINAPI PathQualifyA(LPSTR pszPath)
Definition: shellpath.c:957
LPITEMIDLIST WINAPI ILGlobalClone(LPCITEMIDLIST pidl)
Definition: pidl.c:472
BOOL WINAPI PathIsExeAW(LPCVOID lpszPath)
Definition: shellpath.c:557
HRESULT WINAPI SHCreateDefClassObject(REFIID riidFactory, LPVOID *ppvFactory, LPFNCDCOCALLBACK lpfnCallback, LPDWORD lpdwUsage, REFIID riidObject)
struct _NMRUNFILEDLGW * PNMRUNFILEDLGW
struct tagSHELL_LINK_INFO_CNR_LINKW SHELL_LINK_INFO_CNR_LINKW
struct SFVCOPYHOOKINFO * LPSFVCOPYHOOKINFO
LPVOID WINAPI PathGetExtensionAW(LPCVOID lpszPath, DWORD void1, DWORD void2)
struct CWTESTPATHSTRUCT * LPCWTESTPATHSTRUCT
LPVOID WINAPI PathFindExtensionAW(LPCVOID path)
int WINAPI LogoffWindowsDialog(HWND hWndOwner)
Definition: dialogs.cpp:1534
HINSTANCE WINAPI RealShellExecuteW(_In_opt_ HWND hwnd, _In_opt_ LPCWSTR lpOperation, _In_opt_ LPCWSTR lpFile, _In_opt_ LPCWSTR lpParameters, _In_opt_ LPCWSTR lpDirectory, _In_opt_ LPWSTR lpReturn, _In_opt_ LPCWSTR lpTitle, _In_opt_ LPVOID lpReserved, _In_ INT nCmdShow, _Out_opt_ PHANDLE lphProcess)
Definition: shlexec.cpp:3036
BOOL WINAPI PathMatchSpecAW(LPVOID lpszPath, LPVOID lpszSpec)
BOOL WINAPI FileMenu_InitMenuPopup(HMENU hMenu)
Definition: shlmenu.c:646
HRESULT WINAPI SHLimitInputCombo(HWND hWnd, IShellFolder *psf)
BOOL WINAPI FileMenu_TrackPopupMenuEx(HMENU hMenu, UINT uFlags, int x, int y, HWND hWnd, LPTPMPARAMS lptpm)
Definition: shlmenu.c:524
void WINAPI PathUnquoteSpacesAW(LPVOID lpszPath)
HRESULT WINAPI SHRegisterDragDrop(HWND hWnd, LPDROPTARGET lpDropTarget)
Definition: shellord.c:739
HRESULT WINAPI SHILCreateFromPathW(LPCWSTR path, LPITEMIDLIST *ppidl, DWORD *attributes)
Definition: pidl.c:404
struct _SHCNF_PRINTJOB_INFO * PSHCNF_PRINTJOB_INFO
BOOL WINAPI RegisterShellHook(HWND hWnd, DWORD dwType)
Definition: shellord.c:510
LPWSTR WINAPI ShortSizeFormatW(_In_ DWORD dwNumber, _Out_writes_(0x8FFF) LPWSTR pszBuffer)
Definition: utils.cpp:696
BOOL WINAPI FileMenu_DeleteSeparator(HMENU hMenu)
Definition: shlmenu.c:761
BOOL WINAPI StrRetToStrNW(LPWSTR, DWORD, LPSTRRET, const ITEMIDLIST *)
Definition: shellstring.c:85
void WINAPI SHFreeUnusedLibraries(void)
Definition: shellord.c:1728
DWORD WINAPI FileMenu_GetItemExtent(HMENU hMenu, UINT uPos)
Definition: shlmenu.c:785
HRESULT WINAPI SHInvokePrivilegedFunctionW(_In_z_ LPCWSTR pszName, _In_ PRIVILEGED_FUNCTION fn, _In_opt_ LPARAM lParam)
void WINAPI PathStripPathAW(LPVOID lpszPath)
#define REGSHELLSTATE_SIZE
Definition: undocshell.h:584
struct tagSHELL_LINK_INFOA * LPSHELL_LINK_INFOA
HRESULT WINAPI SHCreatePropertyBag(_In_ REFIID riid, _Out_ void **ppvObj)
Definition: utils.cpp:903
VOID WINAPI PathSetDlgItemPathAW(HWND hDlg, int nIDDlgItem, LPCVOID lpszPath)
LPNMRUNFILEDLGW LPNMRUNFILEDLG
Definition: undocshell.h:189
BOOL WINAPI PathIsDirectoryAW(LPCVOID lpszPath)
HMENU WINAPI FileMenu_Create(COLORREF crBorderColor, int nBorderWidth, HBITMAP hBorderBmp, int nSelHeight, UINT uFlags)
Definition: shlmenu.c:250
VOID WINAPI ShellExec_RunDLLW(_In_opt_ HWND hwnd, _In_opt_ HINSTANCE hInstance, _In_ PCWSTR pszCmdLine, _In_ INT nCmdShow)
Definition: shlexec.cpp:3259
PNMRUNFILEDLGW PNMRUNFILEDLG
Definition: undocshell.h:188
IStream *WINAPI SHGetViewStream(LPCITEMIDLIST, DWORD, LPCTSTR, LPCTSTR, LPCTSTR)
BOOL WINAPI FileMenu_AppendItem(HMENU hMenu, LPCSTR lpszText, UINT uID, int iIcon, HMENU hMenuPopup, int nItemHeight)
BOOL WINAPI PathIsRootAW(LPCVOID x)
Definition: shellpath.c:511
LPVOID WINAPI PathGetArgsAW(LPVOID lpszPath)
struct tagSHELL_LINK_INFO_CNR_LINKA SHELL_LINK_INFO_CNR_LINKA
BOOL WINAPI SHIsTempDisplayMode(VOID)
struct tagSHELL_LINK_INFO_CNR_LINKW * LPSHELL_LINK_INFO_CNR_LINKW
BOOL WINAPI PathAppendAW(LPVOID lpszPath1, LPCVOID lpszPath2)
Definition: shellpath.c:407
HMENU WINAPI FileMenu_FindSubMenuByPidl(HMENU hMenu, LPCITEMIDLIST pidl)
Definition: shlmenu.c:467
BOOL WINAPI IContextMenu_Invoke(_In_ IContextMenu *pContextMenu, _In_ HWND hwnd, _In_ LPCSTR lpVerb, _In_ UINT uFlags)
Definition: utils.cpp:196
void WINAPI ExitWindowsDialog(HWND hWndOwner)
Definition: dialogs.cpp:1597
struct tagEXP_TRACKER EXP_TRACKER
void WINAPI PathRemoveArgsAW(LPVOID lpszPath)
BOOL WINAPI PathStripToRootAW(LPVOID lpszPath)
WORD WINAPI ExtractIconResInfoW(_In_ HANDLE hHandle, _In_ LPCWSTR lpFileName, _In_ WORD wIndex, _Out_ LPWORD lpSize, _Out_ LPHANDLE lpIcon)
Definition: stubs.cpp:652
BOOL WINAPI FileMenu_DeleteMenuItemByFirstID(HMENU hMenu, UINT uID)
INT WINAPI LargeIntegerToString(_In_ const LARGE_INTEGER *pLargeInt, _Out_writes_z_(cchOut) LPWSTR pszOut, _In_ UINT cchOut, _In_ BOOL bUseFormat, _In_opt_ const NUMBERFMTW *pNumberFormat, _In_ DWORD dwNumberFlags)
const SFVCOPYHOOKINFO * LPCSFVCOPYHOOKINFO
Definition: undocshell.h:623
BOOL WINAPI PathIsEqualOrSubFolder(_In_ LPCWSTR pszFile1OrCSIDL, _In_ LPCWSTR pszFile2)
Definition: utils.cpp:1612
struct tagSHELL_LINK_INFO_VOLUME_IDA SHELL_LINK_INFO_VOLUME_IDA
HRESULT WINAPI SHGetImageList(int iImageList, REFIID riid, void **ppv)
Definition: shellord.c:2674
BOOL WINAPI FileMenu_GetLastSelectedItemPidls(UINT uReserved, LPCITEMIDLIST *ppidlFolder, LPCITEMIDLIST *ppidlItem)
Definition: shlmenu.c:540
struct tagSHELL_LINK_INFOA SHELL_LINK_INFOA
BOOL WINAPI PathFileExistsAW(LPCVOID lpszPath)
Definition: shellpath.c:567
LRESULT WINAPI FileMenu_DrawItem(HWND hWnd, LPDRAWITEMSTRUCT lpdis)
Definition: shlmenu.c:586
HRESULT WINAPI SHGetUserDisplayName(_Out_writes_to_(*puSize, *puSize) PWSTR pName, _Inout_ PULONG puSize)
Definition: utils.cpp:1899
BOOL WINAPI ILGetDisplayName(LPCITEMIDLIST pidl, LPVOID path)
Definition: pidl.c:184
INT WINAPI Int64ToString(_In_ LONGLONG llValue, _Out_writes_z_(cchOut) LPWSTR pszOut, _In_ UINT cchOut, _In_ BOOL bUseFormat, _In_opt_ const NUMBERFMTW *pNumberFormat, _In_ DWORD dwNumberFlags)
void WINAPI ShellDDEInit(BOOL bInit)
Definition: shdocvw_main.c:261
void WINAPI SHHandleDiskFull(HWND hwndOwner, UINT uDrive)
Definition: stubs.cpp:596
HRESULT WINAPI SHShouldShowWizards(_In_ IUnknown *pUnknown)
Definition: utils.cpp:216
struct tagSHELL_LINK_HEADER * LPSHELL_LINK_HEADER
struct tagEXP_KNOWN_FOLDER * LPEXP_KNOWN_FOLDER
VOID WINAPI PathQuoteSpacesAW(LPVOID path)
int WINAPI FileMenu_InsertUsingPidl(HMENU hMenu, UINT uID, LPCITEMIDLIST pidl, UINT uFlags, UINT uEnumFlags, LPFNFMCALLBACK lpfnCallback)
Definition: shlmenu.c:414
BOOL WINAPI PathResolveW(LPWSTR path, LPCWSTR *dirs, DWORD flags)
struct tagEXP_TRACKER * LPEXP_TRACKER
BOOL WINAPI PathIsSameRootAW(LPCVOID lpszPath1, LPCVOID lpszPath2)
HRESULT WINAPI CopyStreamUI(_In_ IStream *pSrc, _Out_ IStream *pDst, _Inout_opt_ IProgressDialog *pProgress, _In_opt_ DWORDLONG dwlSize)
Definition: utils.cpp:1359
struct _NMRUNFILEDLGW NMRUNFILEDLGW
struct tagSHELL_LINK_INFO_VOLUME_IDW SHELL_LINK_INFO_VOLUME_IDW
BOOL WINAPI RegenerateUserEnvironment(LPVOID *lpEnvironment, BOOL bUpdateSelf)
Definition: shell32.cpp:71
void WINAPI FileMenu_Invalidate(HMENU hMenu)
Definition: shlmenu.c:459
BOOL WINAPI SHIsBadInterfacePtr(_In_ LPCVOID pv, _In_ UINT_PTR ucb)
Definition: utils.cpp:1875
BOOL WINAPI FileMenu_DeleteAllItems(HMENU hMenu)
Definition: shlmenu.c:669
HRESULT WINAPI SHCreateLinks(HWND hWnd, LPCSTR lpszDir, LPDATAOBJECT lpDataObject, UINT uFlags, LPITEMIDLIST *lppidlLinks)
#define SHSTDAPI
Definition: undocshell.h:22
BOOL WINAPI PathIsUNCAW(LPCVOID lpszPath)
LPSTR WINAPI SheRemoveQuotesA(LPSTR psz)
Definition: utils.cpp:1087
HINSTANCE WINAPI RealShellExecuteA(_In_opt_ HWND hwnd, _In_opt_ LPCSTR lpOperation, _In_opt_ LPCSTR lpFile, _In_opt_ LPCSTR lpParameters, _In_opt_ LPCSTR lpDirectory, _In_opt_ LPSTR lpReturn, _In_opt_ LPCSTR lpTitle, _In_opt_ LPVOID lpReserved, _In_ INT nCmdShow, _Out_opt_ PHANDLE lphProcess)
Definition: shlexec.cpp:3006
HRESULT WINAPI PathProcessCommandAW(LPCVOID lpszPath, LPVOID lpszBuff, DWORD dwBuffSize, DWORD dwFlags)
Definition: shellpath.c:1154
BOOL WINAPI SHTestTokenPrivilegeW(_In_opt_ HANDLE hToken, _In_z_ LPCWSTR lpName)
const SFVSELECTSTATE * LPCSFVSELECTSTATE
Definition: undocshell.h:610
void WINAPI ILGlobalFree(LPITEMIDLIST pidl)
Definition: pidl.c:1065
struct tagAPPBARDATAINTEROP APPBARDATAINTEROP
int WINAPI PathParseIconLocationAW(LPVOID lpszPath)
BOOL WINAPI ILGetDisplayNameEx(LPSHELLFOLDER psf, LPCITEMIDLIST pidl, LPVOID path, DWORD type)
Definition: pidl.c:172
void WINAPI PathRemoveBlanksAW(LPVOID lpszPath)
BOOL WINAPI GUIDFromStringW(_In_ PCWSTR psz, _Out_ LPGUID pguid)
WORD WINAPI ArrangeWindows(HWND hwndParent, DWORD dwReserved, LPCRECT lpRect, WORD cKids, CONST HWND *lpKids)
BOOL WINAPI PathResolveAW(LPVOID lpszPath, LPCVOID *alpszPaths, DWORD dwFlags)
Definition: shellpath.c:1109
HRESULT WINAPI SHExtCoCreateInstance(_In_opt_ LPCWSTR aclsid, _In_opt_ const CLSID *clsid, _In_opt_ LPUNKNOWN pUnkOuter, _In_ REFIID refiid, _Out_ LPVOID *ppv)
Definition: shellole.c:196
VOID WINAPI CheckEscapesW(LPWSTR string, DWORD len)
Definition: shellstring.c:252
BOOL WINAPI FileIconInit(BOOL bFullInit)
Definition: shellord.c:1889
LPITEMIDLIST WINAPI SHSimpleIDListFromPathW(LPCWSTR lpszPath)
Definition: pidl.c:1239
VOID WINAPI ShellExec_RunDLL(_In_opt_ HWND hwnd, _In_opt_ HINSTANCE hInstance, _In_ PCSTR pszCmdLine, _In_ INT nCmdShow)
BOOL WINAPI FileMenu_EnableItemByCmd(HMENU hMenu, UINT uID, BOOL bEnable)
Definition: shlmenu.c:770
struct _REGSHELLSTATE REGSHELLSTATE
VOID WINAPI CheckEscapesA(LPSTR string, DWORD len)
Definition: shellstring.c:227
void WINAPI FileMenu_Destroy(HMENU hMenu)
Definition: shlmenu.c:284
BOOL WINAPI DAD_ShowDragImage(BOOL bShow)
Definition: shellord.c:1797
HRESULT WINAPI SHInvokeCommand(HWND hWnd, IShellFolder *lpFolder, LPCITEMIDLIST lpApidl, LPCSTR lpVerb)
BOOL WINAPI DAD_SetDragImageFromListView(HWND hWnd, POINT pt)
Definition: stubs.cpp:585
LPWSTR WINAPI SheRemoveQuotesW(LPWSTR psz)
Definition: utils.cpp:1112
struct tagSHELL_LINK_INFOW * LPSHELL_LINK_INFOW
struct tagSHELL_LINK_HEADER SHELL_LINK_HEADER
PSTR WINAPI StrRStrA(_In_ PCSTR pszSrc, _In_opt_ PCSTR pszLast, _In_ PCSTR pszSearch)
Definition: utils.cpp:40
struct _SHCNF_PRINTJOB_INFO SHCNF_PRINTJOB_INFO
void WINAPI FileMenu_AbortInitMenu(void)
Definition: shlmenu.c:802
BOOL WINAPI Activate_RunDLL(_In_ HWND hwnd, _In_ HINSTANCE hinst, _In_ LPCWSTR cmdline, _In_ INT cmdshow)
Definition: utils.cpp:1477
DWORD WINAPI SHGetUserSessionId(_In_opt_ HANDLE hToken)
Definition: utils.cpp:716
LRESULT WINAPI FileMenu_MeasureItem(HWND hWnd, LPMEASUREITEMSTRUCT lpmis)
Definition: shlmenu.c:558
HRESULT(CALLBACK * LPFNCDCOCALLBACK)(LPUNKNOWN pUnkOuter, REFIID riidObject, LPVOID *ppvObject)
Definition: undocshell.h:774
HRESULT WINAPI SHRevokeDragDrop(HWND hWnd)
Definition: shellord.c:774
HRESULT WINAPI SHGetComputerDisplayNameW(_In_opt_ LPWSTR pszServerName, _In_ DWORD dwFlags, _Out_writes_z_(cchNameMax) LPWSTR pszName, _In_ DWORD cchNameMax)
VOID WINAPI PathQualifyW(LPWSTR pszPath)
Definition: shellpath.c:969
BOOL WINAPI PathMakeUniqueNameAW(LPVOID lpszBuffer, DWORD dwBuffSize, LPCVOID lpszShortName, LPCVOID lpszLongName, LPCVOID lpszPathName)
Definition: shellpath.c:833
PWSTR WINAPI StrRStrW(_In_ PCWSTR pszSrc, _In_opt_ PCWSTR pszLast, _In_ PCWSTR pszSearch)
Definition: utils.cpp:72
LPVOID WINAPI PathAddBackslashAW(LPVOID path)
LRESULT WINAPI FileMenu_HandleMenuChar(HMENU hMenu, WPARAM wParam)
Definition: shlmenu.c:655
SHSTDAPI DisplayNameOfW(_In_ IShellFolder *psf, _In_ LPCITEMIDLIST pidl, _In_ DWORD dwFlags, _Out_ LPWSTR pszBuf, _In_ UINT cchBuf)
Definition: utils.cpp:432
VOID WINAPI ShellExec_RunDLLA(_In_opt_ HWND hwnd, _In_opt_ HINSTANCE hInstance, _In_ PCSTR pszCmdLine, _In_ INT nCmdShow)
Definition: shlexec.cpp:3242
BOOL WINAPI PathResolveA(LPSTR path, LPCSTR *dirs, DWORD flags)
Definition: shellpath.c:986
HICON WINAPI SHGetFileIcon(DWORD dwReserved, LPCSTR lpszPath, DWORD dwFileAttributes, UINT uFlags)
INT WINAPI Shell_GetCachedImageIndex(LPCWSTR szPath, INT nIndex, UINT bSimulateDoc)
Definition: iconcache.cpp:844
HRESULT(CALLBACK * PRIVILEGED_FUNCTION)(LPARAM lParam)
Definition: undocshell.h:881
BOOL WINAPI SHWaitForFileToOpen(LPCITEMIDLIST pidl, DWORD dwFlags, DWORD dwTimeout)
Definition: shellord.c:1977
HRESULT WINAPI SHUpdateRecycleBinIcon(void)
BOOL WINAPI FileMenu_DeleteItemByCmd(HMENU hMenu, UINT uID)
Definition: shlmenu.c:704
BOOL WINAPI SHInitRestricted(LPCVOID unused, LPCVOID inpRegKey)
HINSTANCE WINAPI RealShellExecuteExA(_In_opt_ HWND hwnd, _In_opt_ LPCSTR lpOperation, _In_opt_ LPCSTR lpFile, _In_opt_ LPCSTR lpParameters, _In_opt_ LPCSTR lpDirectory, _In_opt_ LPSTR lpReturn, _In_opt_ LPCSTR lpTitle, _In_opt_ LPVOID lpReserved, _In_ INT nCmdShow, _Out_opt_ PHANDLE lphProcess, _In_ DWORD dwFlags)
Definition: shlexec.cpp:2872
void WINAPI PathRemoveExtensionAW(LPVOID lpszPath)
HINSTANCE WINAPI RealShellExecuteExW(_In_opt_ HWND hwnd, _In_opt_ LPCWSTR lpOperation, _In_opt_ LPCWSTR lpFile, _In_opt_ LPCWSTR lpParameters, _In_opt_ LPCWSTR lpDirectory, _In_opt_ LPWSTR lpReturn, _In_opt_ LPCWSTR lpTitle, _In_opt_ LPVOID lpReserved, _In_ INT nCmdShow, _Out_opt_ PHANDLE lphProcess, _In_ DWORD dwFlags)
Definition: shlexec.cpp:2939
BOOL WINAPI Shell_GetImageLists(HIMAGELIST *lphimlLarge, HIMAGELIST *lphimlSmall)
Definition: iconcache.cpp:689
HRESULT WINAPI SHILCreateFromPathA(LPCSTR path, LPITEMIDLIST *ppidl, DWORD *attributes)
Definition: pidl.c:392
struct SFVCOLUMNINFO * LPSFVCOLUMNINFO
NMRUNFILEDLGW NMRUNFILEDLG
Definition: undocshell.h:187
BOOL WINAPI PathRemoveFileSpecAW(LPVOID lpszPath)
Definition: shellpath.c:453
struct tagEXP_SHIM EXP_SHIM
struct _NMRUNFILEDLGW * LPNMRUNFILEDLGW
int WINAPI Shell_GetCachedImageIndexA(LPCSTR lpszFileName, int nIconIndex, UINT bSimulateDoc)
struct tagEXP_VISTA_ID_LIST * LPEXP_VISTA_ID_LIST
LONG WINAPI SHRegQueryValueExA(HKEY hkey, LPCSTR lpValueName, LPDWORD lpReserved, LPDWORD lpType, LPBYTE lpData, LPDWORD lpcbData)
Definition: shellreg.c:78
struct tagSHELL_LINK_INFO_VOLUME_IDA * LPSHELL_LINK_INFO_VOLUME_IDA
LPVOID WINAPI PathFindFileNameAW(LPCVOID path)
BOOL WINAPI StrRetToStrNA(LPSTR, DWORD, LPSTRRET, const ITEMIDLIST *)
Definition: shellstring.c:54
WORD WINAPI ExtractIconResInfoA(_In_ HANDLE hHandle, _In_ LPCSTR lpFileName, _In_ WORD wIndex, _Out_ LPWORD lpSize, _Out_ LPHANDLE lpIcon)
Definition: utils.cpp:675
struct tagAPPBAR_COMMAND APPBAR_COMMAND
struct tagEXP_VISTA_ID_LIST EXP_VISTA_ID_LIST
HRESULT WINAPI SHInvokeCommandOnContextMenu(_In_opt_ HWND hWnd, _In_opt_ IUnknown *pUnk, _In_ IContextMenu *pCM, _In_ UINT fCMIC, _In_opt_ LPCSTR pszVerb)
Definition: utils.cpp:150
DWORD WINAPI SHNetConnectionDialog(HWND hwndOwner, LPCWSTR lpstrRemoteName, DWORD dwType)
Definition: stubs.cpp:572
struct tagEXP_SHIM * LPEXP_SHIM
BOOL WINAPI PathIsTemporaryW(_In_ LPCWSTR Str)
HRESULT WINAPI SHCreateSessionKey(REGSAM samDesired, PHKEY phKey)
Definition: shellreg.c:147
struct tagSHELL_LINK_INFO_CNR_LINKA * LPSHELL_LINK_INFO_CNR_LINKA
BOOL WINAPI PathFindOnPathAW(LPVOID sFile, LPCVOID *sOtherDirs)
BOOL WINAPI SHOpenEffectiveToken(_Out_ LPHANDLE phToken)
Definition: utils.cpp:707
int WINAPI SHOutOfMemoryMessageBox(HWND hwndOwner, LPCSTR lpCaption, UINT uType)
Definition: shellord.c:1956
void(CALLBACK * LPFNFMCALLBACK)(LPCITEMIDLIST pidlFolder, LPCITEMIDLIST pidlFile)
Definition: undocshell.h:337
BOOL WINAPI PathIsRelativeAW(LPCVOID lpszPath)
LPVOID WINAPI PathCombineAW(LPVOID szDest, LPCVOID lpszDir, LPCVOID lpszFile)
struct tagEXP_KNOWN_FOLDER EXP_KNOWN_FOLDER
struct _REGSHELLSTATE * PREGSHELLSTATE
VOID WINAPI PathQualifyAW(LPVOID path)
Definition: shellpath.c:978
BOOL WINAPI PathYetAnotherMakeUniqueName(LPWSTR lpszBuffer, LPCWSTR lpszPathName, LPCWSTR lpszShortName, LPCWSTR lpszLongName)
Definition: shellpath.c:848
void WINAPI RunFileDlg(HWND hWndOwner, HICON hIcon, LPCWSTR lpstrDirectory, LPCWSTR lpstrTitle, LPCWSTR lpstrDescription, UINT uFlags)
Definition: dialogs.cpp:399
struct tagAPPBAR_COMMAND * PAPPBAR_COMMAND
struct SFVM_CUSTOMVIEWINFO_DATA * LPSFVM_CUSTOMVIEWINFO_DATA
static GLenum _GLUfuncptr fn
Definition: wgl_font.c:159
_In_opt_ LPSTR _In_opt_ LPSTR _In_ DWORD _In_ DWORD _Out_opt_ PHANDLE phToken
Definition: winbase.h:2756
_In_ LPCSTR lpFileName
Definition: winbase.h:3112
_In_ LPCSTR lpName
Definition: winbase.h:2830
_Reserved_ DWORD * pdwReserved
Definition: wincrypt.h:4254
_In_ PCCERT_CONTEXT _In_ DWORD dwFlags
Definition: wincrypt.h:1176
_In_ void _In_ PCCERT_CONTEXT _In_opt_ LPFILETIME _In_ DWORD _In_ DWORD _Outptr_opt_ void ** ppvObject
Definition: wincrypt.h:6082
_In_ DWORD _Out_writes_bytes_to_opt_ pcbData void _Inout_ DWORD * pcbData
Definition: wincrypt.h:4950
_In_ void _In_ PCCERT_CONTEXT _In_opt_ LPFILETIME _In_ DWORD _In_ DWORD dwTimeout
Definition: wincrypt.h:6081
_In_ LONG _In_ HWND hwnd
Definition: winddi.h:4023
_In_ BOOL bEnable
Definition: winddi.h:3426
_In_ ULONG _In_opt_ PVOID pvData
Definition: winddi.h:3749
LONG_PTR LPARAM
Definition: windef.h:208
LONG_PTR LRESULT
Definition: windef.h:209
UINT_PTR WPARAM
Definition: windef.h:207
DWORD COLORREF
Definition: windef.h:300
CONST void * LPCVOID
Definition: windef.h:191
#define HRESULT
Definition: msvc.h:7
#define WINAPI
Definition: msvc.h:6
_In_ DWORD _In_ int _In_ int _In_opt_ LPNLSVERSIONINFO _In_opt_ LPVOID lpReserved
Definition: winnls.h:1199
ACCESS_MASK REGSAM
Definition: winreg.h:69
_In_ int nIDDlgItem
Definition: winuser.h:4695
const char * LPCSTR
Definition: xmlstorage.h:183
char * LPSTR
Definition: xmlstorage.h:182
__wchar_t WCHAR
Definition: xmlstorage.h:180
WCHAR * LPWSTR
Definition: xmlstorage.h:184
const CHAR * LPCTSTR
Definition: xmlstorage.h:193
const WCHAR * LPCWSTR
Definition: xmlstorage.h:185
char CHAR
Definition: xmlstorage.h:175