Differences From Artifact [7cfbf84102013a8b]:
- File
src/win32/httpext.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 [dcfd30a46b353b59]:
- File
src/win32/httpext.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.
41 41 HSE_TERM_MUST_UNLOAD,
42 42 HSE_IO_SYNC = 0x00000001,
43 43 HSE_IO_ASYNC,
44 44 HSE_IO_DISCONNECT_AFTER_SEND = 0x00000004,
45 45 HSE_IO_SEND_HEADERS = 0x00000008
46 46 }
47 47
48 -alias HANDLE HCONN;
48 +mixin DECLARE_HANDLE!("HCONN");
49 49
50 50 struct HSE_VERSION_INFO {
51 51 DWORD dwExtensionVersion;
52 52 CHAR[HSE_MAX_EXT_DLL_NAME_LEN] lpszExtensionDesc;
53 53 }
54 54 alias HSE_VERSION_INFO* LPHSE_VERSION_INFO;
55 55