13efffecb0d7040495fd18f41f3b029b5fb47f33
[platform/core/appfw/librua.git] / src / rua_util.h
1 /*
2  * Copyright (c) 2016 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  * @file        rua_util.h
19  * @brief       RUA UTIL API declaration header file.
20  * @author      Hyunho Kang (hhstark.kang@samsung.com)
21  * @version     0.1
22  * @history     0.1: RUA UTIL API Declarations, structure declaration
23  */
24
25 #ifndef __RUA_UTIL_H__
26 #define __RUA_UTIL_H__
27
28 #include <sys/types.h>
29
30 #include <sqlite3.h>
31
32 char *_rua_util_get_db_path(uid_t uid, char *db_name);
33 int _rua_util_open_db(sqlite3 **db, int flags, uid_t uid, char *db_name);
34 int _rua_util_check_uid(uid_t target_uid);
35
36 #endif                          /*__RUA_UTIL_H__*/