@@ -110,7 +110,7 @@ namespace WPEFramework {
110
110
// @param state: Application state
111
111
// @param applicationId: Application instance ID
112
112
// @param error: Error string, if any
113
- virtual Core::hresult ApplicationStateChanged (const string& applicationName /* @in @text applicationName */ , const State& state /* @in @text state */ , const string& applicationId /* @in @text applicationId */ , const ErrorCode& error /* @in @text error */ ) = 0;
113
+ virtual Core::hresult ApplicationStateChanged (const string& applicationName /* @in @text applicationName */ , const State& state /* @in @text state */ , const string& applicationId /* @in @text applicationId */ , const ErrorCode& error /* @in @text error */ , bool & success /* @out */ ) = 0;
114
114
/* ***************************************applicationStateChanged()*****************************/
115
115
116
116
/* ***************************************getProtocolVersion()**********************************/
@@ -125,7 +125,7 @@ namespace WPEFramework {
125
125
// @text setManufacturerName
126
126
// @brief Sets the manufacturer name of the device
127
127
// @param manufacturer: The Manufacturer name of the device which used to update in dd.xml
128
- virtual Core::hresult SetManufacturerName (const string &manufacturername /* @in @text manufacturer */ ) = 0;
128
+ virtual Core::hresult SetManufacturerName (const string &manufacturername /* @in @text manufacturer */ , bool & success /* @out */ ) = 0;
129
129
/* **************************************** setManufacturerName() **********************************/
130
130
131
131
/* ***************************************getManufacturerName()**********************************/
@@ -140,7 +140,7 @@ namespace WPEFramework {
140
140
// @text setModelName
141
141
// @brief Sets the model name of the device
142
142
// @param model: The Model name of the device which used to update in dd.xml
143
- virtual Core::hresult SetModelName (const string &modelname /* @in @text model */ ) = 0;
143
+ virtual Core::hresult SetModelName (const string &modelname /* @in @text model */ , bool & success /* @out */ ) = 0;
144
144
/* **************************************** setModelName() **********************************/
145
145
146
146
/* ***************************************getModelName()**********************************/
@@ -155,7 +155,7 @@ namespace WPEFramework {
155
155
// @text setEnabled
156
156
// @brief Enable or disable XCAST service
157
157
// @parm enabled: true for enabled or false for disabled
158
- virtual Core::hresult SetEnabled (const bool & enabled /* @in @text enabled */ ) = 0;
158
+ virtual Core::hresult SetEnabled (const bool & enabled /* @in @text enabled */ , bool & success /* @out */ ) = 0;
159
159
/* **************************************** setEnabled() **********************************/
160
160
161
161
/* ***************************************getEnabled()**********************************/
@@ -170,7 +170,7 @@ namespace WPEFramework {
170
170
// @text setStandbyBehavior
171
171
// @brief Sets the expected xcast behavior in standby mode
172
172
// @param standbybehavior: whether to remain active or inactive during standby mode (must be one of the following: active, inactive)
173
- virtual Core::hresult SetStandbyBehavior (const StandbyBehavior &standbybehavior /* @in @text standbybehavior */ ) = 0;
173
+ virtual Core::hresult SetStandbyBehavior (const StandbyBehavior &standbybehavior /* @in @text standbybehavior */ , bool & success /* @out */ ) = 0;
174
174
/* **************************************** setStandbyBehavior() *********************************/
175
175
176
176
/* ***************************************getStandbyBehavior()**********************************/
@@ -185,7 +185,7 @@ namespace WPEFramework {
185
185
// @text setFriendlyName
186
186
// @brief Sets the friendly name of the device
187
187
// @param friendlyname: The friendly name of the device which used to display on the client device list
188
- virtual Core::hresult SetFriendlyName (const string &friendlyname /* @in @text friendlyname */ ) = 0;
188
+ virtual Core::hresult SetFriendlyName (const string &friendlyname /* @in @text friendlyname */ , bool & success /* @out */ ) = 0;
189
189
/* **************************************** setFriendlyName() **********************************/
190
190
191
191
/* ***************************************getFriendlyName()**********************************/
@@ -208,14 +208,14 @@ namespace WPEFramework {
208
208
// @text registerApplications
209
209
// @brief Registers an application
210
210
// @param applications: Json array with one or more application details to register
211
- virtual Core::hresult RegisterApplications (IApplicationInfoIterator* const appInfoList /* @text applications */ ) = 0;
211
+ virtual Core::hresult RegisterApplications (IApplicationInfoIterator* const appInfoList /* @text applications */ , bool & success /* @out */ ) = 0;
212
212
/* ***************************************registerApplications()**********************************/
213
213
214
214
/* ***************************************unregisterApplications()**********************************/
215
215
// @text unregisterApplications
216
216
// @brief Unregisters an application
217
217
// @param applications: One or more application name to unregister
218
- virtual Core::hresult UnregisterApplications (IStringIterator* const applications /* @in @text applications */ ) = 0;
218
+ virtual Core::hresult UnregisterApplications (IStringIterator* const applications /* @in @text applications */ , bool & success /* @out */ ) = 0;
219
219
/* ***************************************unregisterApplications()**********************************/
220
220
221
221
0 commit comments