Artifact 339bbba305edec50a50bb38a85fec7817a8cd1bb
- File
src/win32/servprov.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.
/***********************************************************************\
* servprov.d *
* *
* Windows API header module *
* *
* Translated from MinGW API for MS-Windows 3.10 *
* *
* Placed into public domain *
\***********************************************************************/
module win32.servprov;
private import win32.basetyps, win32.unknwn, win32.windef, win32.wtypes;
interface IServiceProvider : IUnknown {
HRESULT QueryService(REFGUID, REFIID, void**);
}