OLD | NEW |
(Empty) | |
| 1 import "oaidl.idl"; |
| 2 import "ocidl.idl"; |
| 3 |
| 4 |
| 5 [ uuid (931C5D3F-A6D7-411B-98ED-789FC9291302), |
| 6 version(1.1), |
| 7 pointer_default(unique), |
| 8 ] |
| 9 interface Broker { |
| 10 |
| 11 typedef [context_handle] void* BrokerContextHandle; |
| 12 |
| 13 BrokerContextHandle Connect( |
| 14 [in] handle_t binding_handle); |
| 15 |
| 16 void Disconnect( |
| 17 [in] handle_t binding_handle, |
| 18 [in, out] BrokerContextHandle* context); |
| 19 |
| 20 void FireEvent( |
| 21 [in] handle_t binding_handle, |
| 22 [in] BSTR event_name, |
| 23 [in] BSTR event_args); |
| 24 |
| 25 } |
OLD | NEW |