|
Revision 377, 0.8 kB
(checked in by CyberShadow, 3 months ago)
|
Undo Zone's clobbering of my fixes
|
| Line | |
|---|
| 1 |
/***********************************************************************\ |
|---|
| 2 |
* servprov.d * |
|---|
| 3 |
* * |
|---|
| 4 |
* Windows API header module * |
|---|
| 5 |
* * |
|---|
| 6 |
* Translated from MinGW API for MS-Windows 3.10 * |
|---|
| 7 |
* * |
|---|
| 8 |
* Placed into public domain * |
|---|
| 9 |
\***********************************************************************/ |
|---|
| 10 |
module win32.servprov; |
|---|
| 11 |
|
|---|
| 12 |
private import win32.basetyps, win32.unknwn, win32.windef, win32.wtypes; |
|---|
| 13 |
|
|---|
| 14 |
interface IServiceProvider : IUnknown { |
|---|
| 15 |
HRESULT QueryService(REFGUID, REFIID, void**); |
|---|
| 16 |
} |
|---|