TESTING -- override pthreads to fix gstreamer v5
[wine/multimedia.git] / include / rstnot.idl
blob9e6975f9c78be4a268b2dc9499aa66a1111ccd52
1 /*
2 * Copyright (C) 2013 Nikolay Sivov
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
19 #if 0
20 #pragma makedep install
21 #endif
24 object,
25 uuid(0c733a83-2a1c-11ce-ade5-00aa0044773d),
26 pointer_default(unique)
28 interface IRowsetNotify : IUnknown
30 [local]
31 HRESULT OnFieldChange([in] IRowset *rowset,
32 [in] HROW row,
33 [in] DBORDINAL ccols,
34 [in, size_is((ULONG)ccols)] DBORDINAL *columns,
35 [in] DBREASON reason,
36 [in] DBEVENTPHASE phase,
37 [in] BOOL cantdeny);
39 [call_as(OnFieldChange)]
40 HRESULT RemoteOnFieldChange(
41 [in] IRowset *rowset,
42 [in] HROW row,
43 [in] DBORDINAL ccols,
44 [in, size_is((ULONG)ccols)] DBORDINAL *columns,
45 [in] DBREASON reason,
46 [in] DBEVENTPHASE phase,
47 [in] BOOL cantdeny);
49 [local]
50 HRESULT OnRowChange([in] IRowset *rowset,
51 [in] DBCOUNTITEM rows,
52 [in, size_is((ULONG)rows)] HROW *hrows,
53 [in] DBREASON reason,
54 [in] DBEVENTPHASE phase,
55 [in] BOOL cantdeny);
57 [call_as(OnRowChange)]
58 HRESULT RemoteOnRowChange(
59 [in] IRowset *rowset,
60 [in] DBCOUNTITEM rows,
61 [in, size_is((ULONG)rows)] HROW *hrows,
62 [in] DBREASON reason,
63 [in] DBEVENTPHASE phase,
64 [in] BOOL cantdeny);
66 [local]
67 HRESULT OnRowsetChange([in] IRowset *rowset,
68 [in] DBREASON reason,
69 [in] DBEVENTPHASE phase,
70 [in] BOOL cantdeny);
72 [call_as(OnRowsetChange)]
73 HRESULT RemoteOnRowsetChange(
74 [in] IRowset *rowset,
75 [in] DBREASON reason,
76 [in] DBEVENTPHASE phase,
77 [in] BOOL cantdeny);