d: Merge upstream dmd 568496d5b, druntime 178c44ff, phobos 574bf883b.
[official-gcc.git] / libphobos / libdruntime / core / sys / windows / shldisp.d
blobecb0edee87601c692b18048e9e8938cb6fb6d289
1 /**
2 * Windows API header module
4 * Translated from MinGW Windows headers
6 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
7 * Source: $(DRUNTIMESRC core/sys/windows/_shldisp.d)
8 */
9 module core.sys.windows.shldisp;
10 version (Windows):
11 @system:
13 import core.sys.windows.unknwn, core.sys.windows.windef, core.sys.windows.wtypes;
15 // options for IAutoComplete2
16 enum DWORD ACO_AUTOSUGGEST = 0x01;
18 interface IAutoComplete : IUnknown {
19 HRESULT Init(HWND, IUnknown, LPCOLESTR, LPCOLESTR);
20 HRESULT Enable(BOOL);
22 alias IAutoComplete LPAUTOCOMPLETE;
24 interface IAutoComplete2 : IAutoComplete {
25 HRESULT SetOptions(DWORD);
26 HRESULT GetOptions(DWORD*);
28 alias IAutoComplete2 LPAUTOCOMPLETE2;