Update License
[apps/livebox/livebox-service.git] / include / livebox-errno.h
1 /*
2  * Copyright 2013  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.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://floralicense.org/license/
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 #ifndef __LIVEBOX_ERRNO_H
18 #define __LIVEBOX_ERRNO_H
19
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23
24 enum livebox_status {
25         LB_STATUS_SUCCESS = 0x00000000,
26         LB_STATUS_ERROR = 0x80000000,
27         LB_STATUS_ERROR_INVALID = LB_STATUS_ERROR | 0x0001,
28         LB_STATUS_ERROR_FAULT = LB_STATUS_ERROR | 0x0002,
29         LB_STATUS_ERROR_MEMORY = LB_STATUS_ERROR | 0x0004,
30         LB_STATUS_ERROR_EXIST = LB_STATUS_ERROR | 0x0008,
31         LB_STATUS_ERROR_BUSY = LB_STATUS_ERROR | 0x0010,
32         LB_STATUS_ERROR_PERMISSION = LB_STATUS_ERROR | 0x0020,
33         LB_STATUS_ERROR_ALREADY = LB_STATUS_ERROR | 0x0040,
34         LB_STATUS_ERROR_CANCEL = LB_STATUS_ERROR | 0x0080,
35         LB_STATUS_ERROR_IO = LB_STATUS_ERROR | 0x0100,
36         LB_STATUS_ERROR_NOT_EXIST = LB_STATUS_ERROR | 0x0200,
37         LB_STATUS_ERROR_TIMEOUT = LB_STATUS_ERROR | 0x0400,
38         LB_STATUS_ERROR_NOT_IMPLEMENTED = LB_STATUS_ERROR | 0x0800,
39         LB_STATUS_ERROR_NO_SPACE = LB_STATUS_ERROR | 0x1000,
40 };
41
42 #define LB_STATUS_IS_ERROR(s)   (!!((s) & LB_STATUS_ERROR))
43
44 #ifdef __cplusplus
45 }
46 #endif
47
48 #endif
49 /* End of a file */