blob: 62620a68b10f1a2b9fc2e77b7be630cc00940d9f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1993.
//
// File: alrep.idl
//
// Contents: IAlertReport interface
//
// Classes:
//
// Functions:
//
// History: 13-Dec-93 markbl Created
//
//----------------------------------------------------------------------------
#include "idlmulti.h"
LOCAL_INTERFACE(4E81DFE8-4CA0-101A-8206-08002B2FC09B)
interface IAlertReport : IUnknown
{
#ifndef APBU
import "unknwn.idl";
#endif
HRESULT InitNew([ in ] DISPPARAMS * pdparams);
HRESULT GetReportData([ out ] DISPPARAMS * pdparams);
HRESULT GetTitle([ out ] BSTR * pbstrTitle);
HRESULT GetTextualDescription([ out ] BSTR * pbstrDescr);
}
|