Init basesystem source codes.
[staging/basesystem.git] / video_in_hal / vehicleservice / positioning / server / src / ServiceInterface / DiagSrvIf.cpp
1 /*
2  * @copyright Copyright (c) 2016-2020 TOYOTA MOTOR CORPORATION.
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  * @file
19  *    DiagSrvIf.cpp
20  * @brief
21  *    DiagSrv service-to-service interface
22  */
23
24 /*---------------------------------------------------------------------------------*
25  * Include Files                                                                   *
26  *---------------------------------------------------------------------------------*/
27 #include <vehicle_service/positioning_base_library.h>
28 #include "DiagSrvIf.h"
29
30 /*---------------------------------------------------------------------------------*
31  * Definition                                                                      *
32  *---------------------------------------------------------------------------------*/
33
34 /*---------------------------------------------------------------------------------*
35  * Structre                                                                        *
36  *---------------------------------------------------------------------------------*/
37
38 /*---------------------------------------------------------------------------------*
39  * Local Function Prototype                                                        *
40  *---------------------------------------------------------------------------------*/
41
42 /*---------------------------------------------------------------------------------*
43  * Grobal Value                                                                    *
44  *---------------------------------------------------------------------------------*/
45 static BOOL g_registration_permission = FALSE; /* Whether or not the dialog code can be registered */
46
47 /*---------------------------------------------------------------------------------*
48  * Function                                                                        *
49  *---------------------------------------------------------------------------------*/
50 /**
51  * @brief
52  *    DiagSrv Services IF Registration Enable Status Setting
53  *
54  * @param[in]  b_is_true
55  * @return     none
56  */
57 void DiagSrvIfSetRegistrationPermission(BOOL b_is_true) {
58     g_registration_permission = b_is_true;
59
60     FRAMEWORKUNIFIEDLOG(ZONE_INFO, __FUNCTION__, \
61         "g_registration_permission=%d", g_registration_permission);
62
63     return;
64 }