source: Daodan/MinGW/include/shlguid.h@ 1111

Last change on this file since 1111 was 1046, checked in by alloc, 8 years ago

Daodan: Added Windows MinGW and build batch file

File size: 3.4 KB
Line 
1#ifndef _SHLGUID_H
2#define _SHLGUID_H
3#if __GNUC__ >= 3
4#pragma GCC system_header
5#endif
6
7#ifdef __cplusplus
8extern "C" {
9#endif
10#define DEFINE_SHLGUID(n,l,w1,w2) DEFINE_GUID(n,l,w1,w2,0xC0,0,0,0,0,0,0,0x46)
11#define SID_SShellBrowser IID_IShellBrowser
12extern const GUID CLSID_ShellDesktop;
13extern const GUID CLSID_ShellLink;
14extern const GUID FMTID_Intshcut;
15extern const GUID FMTID_InternetSite;
16extern const GUID CGID_Explorer;
17extern const GUID CGID_ShellDocView;
18extern const GUID CGID_ShellServiceObject;
19extern const GUID IID_INewShortcutHookA;
20extern const GUID IID_IShellBrowser;
21extern const GUID IID_IShellView;
22extern const GUID IID_IContextMenu;
23extern const GUID IID_IColumnProvider;
24extern const GUID IID_IQueryInfo;
25extern const GUID IID_IShellIcon;
26extern const GUID IID_IShellIconOverlayIdentifier;
27extern const GUID IID_IShellFolder;
28extern const GUID IID_IShellExtInit;
29extern const GUID IID_IShellPropSheetExt;
30extern const GUID IID_IPersistFolder;
31extern const GUID IID_IExtractIconA;
32extern const GUID IID_IShellLinkA;
33extern const GUID IID_IShellCopyHookA;
34extern const GUID IID_IFileViewerA;
35extern const GUID IID_ICommDlgBrowser;
36extern const GUID IID_IEnumIDList;
37extern const GUID IID_IFileViewerSite;
38extern const GUID IID_IContextMenu2;
39extern const GUID IID_IContextMenu3;
40extern const GUID IID_IShellExecuteHookA;
41extern const GUID IID_IPropSheetPage;
42extern const GUID IID_INewShortcutHookW;
43extern const GUID IID_IFileViewerW;
44extern const GUID IID_IShellLinkW;
45extern const GUID IID_IExtractIconW;
46extern const GUID IID_IShellExecuteHookW;
47extern const GUID IID_IShellCopyHookW;
48extern const GUID IID_IShellView2;
49extern const GUID LIBID_SHDocVw;
50extern const GUID IID_IShellExplorer;
51extern const GUID DIID_DShellExplorerEvents;
52extern const GUID CLSID_ShellExplorer;
53extern const GUID IID_ISHItemOC;
54extern const GUID DIID_DSHItemOCEvents;
55extern const GUID CLSID_SHItemOC;
56extern const GUID IID_DHyperLink;
57extern const GUID IID_DIExplorer;
58extern const GUID DIID_DExplorerEvents;
59extern const GUID CLSID_InternetExplorer;
60extern const GUID CLSID_StdHyperLink;
61extern const GUID CLSID_FileTypes;
62extern const GUID CLSID_InternetShortcut;
63extern const GUID IID_IUniformResourceLocator;
64extern const GUID CLSID_DragDropHelper;
65extern const GUID IID_IDropTargetHelper;
66extern const GUID IID_IDragSourceHelper;
67extern const GUID CLSID_AutoComplete;
68extern const GUID IID_IAutoComplete;
69extern const GUID IID_IAutoComplete2;
70extern const GUID CLSID_ACLMulti;
71extern const GUID IID_IObjMgr;
72extern const GUID CLSID_ACListISF;
73extern const GUID IID_IACList;
74#if (_WIN32_IE >= 0x400 || _WIN32_WINNT >= 0x500)
75extern const GUID IID_IPersistFolder2;
76#endif
77#if (_WIN32_WINNT >= 0x500)
78extern const GUID IID_IPersistFolder3;
79extern const GUID IID_IShellFolder2;
80extern const GUID IID_IFileSystemBindData;
81#endif
82#if (_WIN32_WINNT >= 0x501)
83extern const GUID IID_IFolderView;
84#endif
85#ifdef UNICODE
86#define IID_IFileViewer IID_IFileViewerW
87#define IID_IShellLink IID_IShellLinkW
88#define IID_IExtractIcon IID_IExtractIconW
89#define IID_IShellCopyHook IID_IShellCopyHookW
90#define IID_IShellExecuteHook IID_IShellExecuteHookW
91#define IID_INewShortcutHook IID_INewShortcutHookW
92#else
93#define IID_IFileViewer IID_IFileViewerA
94#define IID_IShellLink IID_IShellLinkA
95#define IID_IExtractIcon IID_IExtractIconA
96#define IID_IShellCopyHook IID_IShellCopyHookA
97#define IID_IShellExecuteHook IID_IShellExecuteHookA
98#define IID_INewShortcutHook IID_INewShortcutHookA
99#endif
100
101#ifdef __cplusplus
102}
103#endif
104
105#endif
Note: See TracBrowser for help on using the repository browser.