dsound: Add dumb heuristic to find buggy applications, try 3
[wine/multimedia.git] / include / asynot.idl
blob2f52713a49ce0e0c3841fc6d47f7d39c07d6c436
1 /*
2 * Copyright (C) 2009 Huw Davies
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 object,
21 uuid(0c733a96-2a1c-11ce-ade5-00aa0044773d),
22 pointer_default(unique)
24 interface IDBAsynchNotify : IUnknown
26 [local]
27 HRESULT OnLowResource([in] DB_DWRESERVE dwReserved);
29 [call_as(OnLowResource)]
30 HRESULT RemoteOnLowResource([in] DB_DWRESERVE dwReserved);
32 [local]
33 HRESULT OnProgress([in] HCHAPTER hChapter,
34 [in] DBASYNCHOP eOperation,
35 [in] DBCOUNTITEM ulProgress,
36 [in] DBCOUNTITEM ulProgressMax,
37 [in] DBASYNCHPHASE eAsynchPhase,
38 [in, annotation("__in_opt")] LPOLESTR pwszStatusText);
40 [call_as(OnProgress)]
41 HRESULT RemoteOnProgress([in] HCHAPTER hChapter,
42 [in] DBASYNCHOP eOperation,
43 [in] DBCOUNTITEM ulProgress,
44 [in] DBCOUNTITEM ulProgressMax,
45 [in] DBASYNCHPHASE eAsynchPhase,
46 [in, unique, string] LPOLESTR pwszStatusText);
48 [local]
49 HRESULT OnStop([in] HCHAPTER hChapter,
50 [in] DBASYNCHOP eOperation,
51 [in] HRESULT hrStatus,
52 [in, annotation("__in_opt")] LPOLESTR pwszStatusText);
54 [call_as(OnStop)]
55 HRESULT RemoteOnStop([in] HCHAPTER hChapter,
56 [in] DBASYNCHOP eOperation,
57 [in] HRESULT hrStatus,
58 [in, unique, string] LPOLESTR pwszStatusText);