| Index: ceee/ie/broker/broker_rpc_client.h
|
| ===================================================================
|
| --- ceee/ie/broker/broker_rpc_client.h (revision 66617)
|
| +++ ceee/ie/broker/broker_rpc_client.h (working copy)
|
| @@ -17,7 +17,7 @@
|
| ~BrokerRpcClient();
|
|
|
| // Initialize connection with server.
|
| - bool Connect();
|
| + HRESULT Connect();
|
|
|
| // Relese connection with server
|
| void Disconnect();
|
| @@ -30,9 +30,12 @@
|
| // @name Remote calls.
|
| // @{
|
| // Calls FireEvent on server side.
|
| - bool FireEvent(BSTR event_name, BSTR event_args);
|
| + HRESULT FireEvent(const char* event_name, const char* event_args);
|
| // @}
|
|
|
| + // Starts new CEEE broker if nessesary.
|
| + static HRESULT StartServer();
|
| +
|
| private:
|
| void LockContext();
|
| void ReleaseContext();
|
|
|