2 * Copyright 2009 Damjan Jovanovic
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
22 interface IEnumWIA_DEV_INFO
;
24 interface IWiaEventCallback
;
26 cpp_quote
("DEFINE_GUID(CLSID_WiaDevMgr, 0xa1f4e726,0x8cf1,0x11d1,0xbf,0x92,0x00,0x60,0x08,0x1e,0xd8,0x11);")
30 uuid(5eb2502a
-8cf1
-11d1
-bf92
-0060081ed811
)
32 interface IWiaDevMgr
: IUnknown
34 HRESULT EnumDeviceInfo
(
36 [retval, out] IEnumWIA_DEV_INFO
**ppIEnum
);
39 [in] BSTR bstrDeviceID
,
40 [out] IWiaItem
**ppWiaItemRoot
);
42 HRESULT SelectDeviceDlg
(
44 [in] LONG lDeviceType
,
46 [in, out] BSTR *pbstrDeviceID
,
47 [retval, out] IWiaItem
**ppItemRoot
);
49 HRESULT SelectDeviceDlgID
(
51 [in] LONG lDeviceType
,
53 [retval, out] BSTR *pbstrDeviceID
);
57 [in] LONG lDeviceType
,
60 [in] IWiaItem
*pItemRoot
,
61 [in] BSTR bstrFilename
,
62 [in, out] GUID
*pguidFormat
);
64 HRESULT RegisterEventCallbackProgram
(
66 [in] BSTR bstrDeviceID
,
67 [in] const GUID
*pEventGUID
,
68 [in] BSTR bstrCommandline
,
70 [in] BSTR bstrDescription
,
73 HRESULT RegisterEventCallbackInterface
(
75 [in] BSTR bstrDeviceID
,
76 [in] const GUID
*pEventGUID
,
77 [unique, in] IWiaEventCallback
*pIWiaEventCallback
,
78 [out] IUnknown
**pEventObject
);
80 HRESULT RegisterEventCallbackCLSID
(
82 [in] BSTR bstrDeviceID
,
83 [in] const GUID
*pEventGUID
,
84 [unique, in] const GUID
*pClsID
,
86 [in] BSTR bstrDescription
,
96 uuid(5e38b83c
-8cf1
-11d1
-bf92
-0060081ed811
)
98 interface IEnumWIA_DEV_INFO
: IUnknown
105 uuid(4db1ad10
-3391-11d2
-9a33
-00c04fa36145
)
107 interface IWiaItem
: IUnknown
114 uuid(ae6287b0
-0084-11d2
-973b
-00a0c9068f2e
)
116 interface IWiaEventCallback
: IUnknown
118 HRESULT ImageEventCallback
(
119 [in] const GUID
*pEventGUID
,
120 [in] BSTR bstrEventDescription
,
121 [in] BSTR bstrDeviceID
,
122 [in] BSTR bstrDeviceDescription
,
123 [in] DWORD dwDeviceType
,
124 [in] BSTR bstrFullItemName
,
125 [in,out] ULONG
*pulEventType
,
126 [in] ULONG ulReserved
);