Differences From Artifact [c1af51274ab1ba01]:
- File
src/win32/shldisp.d
- 2015-04-21 10:46:55 - part of checkin [4e2933c620] on branch trunk - Rebased to the latest verson dmd 2.067. Not yet verified the outcome. (user: kinaba) [annotate]
To Artifact [123bd0ae840278fd]:
- File
src/win32/shldisp.d
-
2015-05-05 06:49:05
- part of checkin
[9b639cf2d6]
on branch trunk
- Working version for update to 2.067.
The problem was __gshared. Replacing it with TLS fixed the issue. Remaining problem is that "hack.d"'s CloseHandle hack is not working anymore.
(user: kinaba) [annotate]
-
2015-05-05 06:49:05
- part of checkin
[9b639cf2d6]
on branch trunk
- Working version for update to 2.067.
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;