mirror of git://gcc.gnu.org/git/gcc.git
17 lines
493 B
D
17 lines
493 B
D
/**
|
|
* Windows API header module
|
|
*
|
|
* Translated from MinGW API for MS-Windows 3.10
|
|
*
|
|
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
|
* Source: $(DRUNTIMESRC src/core/sys/windows/_servprov.d)
|
|
*/
|
|
module core.sys.windows.servprov;
|
|
version (Windows):
|
|
|
|
private import core.sys.windows.basetyps, core.sys.windows.unknwn, core.sys.windows.windef, core.sys.windows.wtypes;
|
|
|
|
interface IServiceProvider : IUnknown {
|
|
HRESULT QueryService(REFGUID, REFIID, void**);
|
|
}
|