@@ -31,6 +31,10 @@ namespace WPEFramework
31
31
{
32
32
enum { ID = ID_TELEMETRY };
33
33
34
+ struct EXTERNAL TelemetrySuccess {
35
+ bool success;
36
+ };
37
+
34
38
// @event
35
39
struct EXTERNAL INotification : virtual public Core::IUnknown
36
40
{
@@ -76,16 +80,16 @@ namespace WPEFramework
76
80
// @text setOptOutTelemetry
77
81
// @brief Sets the telemetry opt-out status.
78
82
// @param OptOut - in - boolean
79
- // @param TelemetrySuccess - out - struct
80
- virtual Core::hresult SetOptOutTelemetry (const bool OptOut /* @text Opt-Out */ , TelemetrySuccess & successResult /* @out */ ) = 0;
83
+ // @param - out - struct
84
+ virtual Core::hresult SetOptOutTelemetry (const bool optOut /* @text Opt-Out */ , & successResult /* @out */ ) = 0;
81
85
/* *********************setOptOutTelemetry() - end*****************************************/
82
86
83
87
/* *********************isOptOutTelemetry() - start***************************************/
84
88
// @text isOptOutTelemetry
85
89
// @brief Checks the telemetry opt-out status.
86
90
// @param OptOut - out - boolean
87
91
// @param success - out - boolean
88
- virtual Core::hresult IsOptOutTelemetry (bool & OptOut /* @out @text Opt-Out*/ , bool & success /* @out */ ) = 0
92
+ virtual Core::hresult IsOptOutTelemetry (bool & optOut /* @out @text Opt-Out*/ , bool & success /* @out */ ) = 0
89
93
/* *********************isOptOutTelemetry() - end*****************************************/
90
94
};
91
95
} // namespace Exchange
0 commit comments