Diff

Not logged in

Differences From Artifact [c1af51274ab1ba01]:

To Artifact [123bd0ae840278fd]:


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