Diff

Not logged in

Differences From Artifact [c1af51274ab1ba01]:

To Artifact [123bd0ae840278fd]:


11 11 12 private import win32.unknwn, win32.windef, win32.wtypes; 12 private import win32.unknwn, win32.windef, win32.wtypes; 13 13 14 // options for IAutoComplete2 14 // options for IAutoComplete2 15 const DWORD ACO_AUTOSUGGEST = 0x01; 15 const DWORD ACO_AUTOSUGGEST = 0x01; 16 16 17 interface IAutoComplete : IUnknown { 17 interface IAutoComplete : IUnknown { 18 HRESULT Init(HWND, IUnknown*, LPCOLESTR, LPCOLESTR); | 18 HRESULT Init(HWND, IUnknown, LPCOLESTR, LPCOLESTR); 19 HRESULT Enable(BOOL); 19 HRESULT Enable(BOOL); 20 } 20 } 21 alias IAutoComplete* LPAUTOCOMPLETE; | 21 alias IAutoComplete LPAUTOCOMPLETE; 22 22 23 interface IAutoComplete2 : IAutoComplete { 23 interface IAutoComplete2 : IAutoComplete { 24 HRESULT SetOptions(DWORD); 24 HRESULT SetOptions(DWORD); 25 HRESULT GetOptions(DWORD*); 25 HRESULT GetOptions(DWORD*); 26 } 26 } 27 alias IAutoComplete2* LPAUTOCOMPLETE2; | 27 alias IAutoComplete2 LPAUTOCOMPLETE2;