source: Daodan/MSYS2/mingw32/i686-w64-mingw32/include/napsystemhealthvalidator.idl

Last change on this file was 1166, checked in by rossy, 3 years ago

Daodan: Replace MinGW build env with an up-to-date MSYS2 env

File size: 1.8 KB
Line 
1/**
2 * This file is part of the mingw-w64 runtime package.
3 * No warranty is given; refer to the file DISCLAIMER within this package.
4 */
5
6import "naptypes.idl";
7import "unknwn.idl";
8
9cpp_quote("#include <winapifamily.h>")
10cpp_quote("")
11cpp_quote("#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)")
12
13interface INapServerCallback;
14interface INapSystemHealthValidator;
15interface INapSystemHealthValidationRequest;
16
17[object, uuid (EF43D87C-5b6d-4820-8620-868907fe07d3), async_uuid (2516031a-A391-454d-B53D-C5DC84C7F2DB), pointer_default (unique)]
18interface INapSystemHealthValidator : IUnknown {
19 HRESULT Validate ([in] INapSystemHealthValidationRequest *request,[in] UINT32 hintTimeOutInMsec,[in] INapServerCallback *callback);
20};
21
22[object, uuid (09c20568-F30C-489b-AE9C-4930ad7f165f), pointer_default (unique)]
23interface INapServerCallback : IUnknown {
24 HRESULT OnComplete ([in] INapSystemHealthValidationRequest *request,[in] HRESULT errorCode);
25};
26
27[object, uuid (ADACB3A0-D4F4-4f17-8933-51d60fcca606), pointer_default (unique)]
28interface INapSystemHealthValidationRequest : IUnknown {
29 HRESULT GetCorrelationId ([out] CorrelationId *correlationId);
30 HRESULT GetStringCorrelationId ([out] StringCorrelationId **correlationId);
31 HRESULT GetMachineName ([out] CountedString **machineName);
32 HRESULT GetSoHRequest ([out] SoHRequest **sohRequest,[out] WINBOOL *napSystemGenerated);
33 HRESULT SetSoHResponse ([in] const SoHResponse *sohResponse);
34 HRESULT GetSoHResponse ([out] SoHResponse **sohResponse);
35 HRESULT SetPrivateData ([in] const PrivateData *privateData);
36 HRESULT GetPrivateData ([out] PrivateData **privateData);
37};
38
39[object, uuid (91a5d706-0cb4-4a84-8315-9380d453e385), pointer_default (unique)]
40interface INapSystemHealthValidationRequest2 : INapSystemHealthValidationRequest {
41 HRESULT GetConfigID ([out] UINT32 *configID);
42};
43cpp_quote("#endif")
Note: See TracBrowser for help on using the repository browser.