|
Revision 377, 1.1 kB
(checked in by CyberShadow, 3 months ago)
|
Undo Zone's clobbering of my fixes
|
| Line | |
|---|
| 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 : IUnknown { |
|---|
| 18 |
HRESULT Init(HWND, IUnknown*, LPCOLESTR, LPCOLESTR); |
|---|
| 19 |
HRESULT Enable(BOOL); |
|---|
| 20 |
} |
|---|
| 21 |
alias IAutoComplete* LPAUTOCOMPLETE; |
|---|
| 22 |
|
|---|
| 23 |
interface IAutoComplete2 : IAutoComplete { |
|---|
| 24 |
HRESULT SetOptions(DWORD); |
|---|
| 25 |
HRESULT GetOptions(DWORD*); |
|---|
| 26 |
} |
|---|
| 27 |
alias IAutoComplete2* LPAUTOCOMPLETE2; |
|---|