comparison win32/shldisp.d @ 1:4a9dcbd9e54f

-files of 0.13 beta -fixes so that it now compiles with the current dmd version
author marton@basel.hu
date Tue, 05 Apr 2011 20:44:01 +0200
parents
children
comparison
equal deleted inserted replaced
0:586e4a649642 1:4a9dcbd9e54f
1 /***********************************************************************\
2 * shldisp.d *
3 * *
4 * Windows API header module *
5 * *
6 * Translated from MinGW Windows headers *
7 * *
8 * Placed into public domain *
9 \***********************************************************************/
10 module win32.shldisp;
11
12 private import win32.unknwn, win32.windef, win32.wtypes;
13
14 // options for IAutoComplete2
15 const DWORD ACO_AUTOSUGGEST = 0x01;
16
17 interface IAutoComplete : public IUnknown {
18 HRESULT Init(HWND, IUnknown*, LPCOLESTR, LPCOLESTR);
19 HRESULT Enable(BOOL);
20 }
21 alias IAutoComplete* LPAUTOCOMPLETE;
22
23 interface IAutoComplete2 : public IAutoComplete {
24 HRESULT SetOptions(DWORD);
25 HRESULT GetOptions(DWORD*);
26 }
27 alias IAutoComplete2* LPAUTOCOMPLETE2;