Add the status check logic for BT enable / disable method
[platform/core/connectivity/bluetooth-frwk.git] / bt-api / bt-scmst.c
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *              http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 #include <glib.h>
19
20 #include "bt-common.h"
21 #include "bt-internal-types.h"
22 #include "bt-request-sender.h"
23 #include "bluetooth-scmst-api.h"
24
25 BT_EXPORT_API int bluetooth_a2dp_set_content_protection(gboolean status)
26 {
27         int result;
28
29         BT_CHECK_ENABLED(return);
30
31         BT_INIT_PARAMS();
32         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
33
34         g_array_append_vals(in_param1, &status, sizeof(gboolean));
35
36         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_SET_CONTENT_PROTECT,
37                 in_param1, in_param2, in_param3, in_param4, &out_param);
38
39         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
40
41         return result;
42 }