connectionmonitoring/connmon/connectionmonitor/src/ConnMonServ.cpp
branchRCL_3
changeset 24 05bc53fe583b
parent 23 fc7b30ed2058
child 25 83ca720e2b9a
--- a/connectionmonitoring/connmon/connectionmonitor/src/ConnMonServ.cpp	Thu Aug 19 10:18:49 2010 +0300
+++ b/connectionmonitoring/connmon/connectionmonitor/src/ConnMonServ.cpp	Tue Aug 31 15:35:44 2010 +0300
@@ -352,6 +352,14 @@
     // Identify ourselves and open for service
     StartL( KConnectionMonitorServerName );
 
+    //Start Indicator observer process
+    _LIT(KIndicatorObserverExeFile,"indicatorobserver.exe");
+    _LIT(KIndicatorObserverExeFileCmd,"");
+    RProcess proc;
+    User::LeaveIfError(proc.Create(KIndicatorObserverExeFile,KIndicatorObserverExeFileCmd));
+    proc.Resume();
+    proc.Close(); // Closes the handle, not the process.
+
     LOGIT("ConstructL: Server started successfully")
     LOGEXITFN("CConnMonServer::ConstructL()")
     }