usbengines/usbotgwatcher/inc/cusbservicecontrol.h
changeset 3 47c263f7e521
parent 0 1e05558e2206
child 6 a15c582fbf97
equal deleted inserted replaced
2:468cfcb53fd1 3:47c263f7e521
    63      */
    63      */
    64     virtual ~CUsbServiceControl();
    64     virtual ~CUsbServiceControl();
    65 
    65 
    66     /**
    66     /**
    67      * Starts usb service. When service is started call back function 
    67      * Starts usb service. When service is started call back function 
    68      * MUsbServiceControlObserver::UsbServiceStarted will be called.
    68      * MUsbServiceControlObserver::UsbServiceControlReqCompletedL will be called.
    69      * Client should not worry is usb service already started, or not,
    69      * Client should not worry is usb service already started, or not,
    70      * and which one personality is started. Just request this API 
    70      * and which one personality is started. Just request this API 
    71      * @param aPersonalityId personality id (required by RUsb API to start usb services) 
    71      * @param aPersonalityId personality id (required by RUsb API to start usb services) 
    72      * @return error code
    72      * @return error code
    73      */
    73      */
    74     TInt Start(TInt aPersonalityId);
    74     TInt StartL(TInt aPersonalityId);
    75 
    75 
    76     /**
    76     /**
    77      * Stops service. When service is stopped call back function 
    77      * Stops service. When service is stopped call back function 
    78      * MUsbServiceControlObserver::UsbServiceStopped will be called
    78      * MUsbServiceControlObserver::UsbServiceControlReqCompletedL will be called
    79      * @return error code
    79      * @return error code
    80      */
    80      */
    81     TInt Stop();
    81     TInt StopL();
    82 
    82 
    83 public:
    83 public:
    84 
    84 
    85     // from base class CActive
    85     // from base class CActive
    86     /**
    86     /**