summaryrefslogtreecommitdiff
path: root/include/livebox-errno.h
blob: 3e72b0937af2de4c3aa100e6460b5a8af848b2f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
 * Copyright 2013  Samsung Electronics Co., Ltd
 *
 * Licensed under the Flora License, Version 1.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://floralicense.org/license/
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef __LIVEBOX_ERRNO_H
#define __LIVEBOX_ERRNO_H

#ifdef __cplusplus
extern "C" {
#endif

enum livebox_status {
	LB_STATUS_SUCCESS = 0x00000000,
	LB_STATUS_ERROR = 0x80000000,
	LB_STATUS_ERROR_INVALID = LB_STATUS_ERROR | 0x0001,
	LB_STATUS_ERROR_FAULT = LB_STATUS_ERROR | 0x0002,
	LB_STATUS_ERROR_MEMORY = LB_STATUS_ERROR | 0x0004,
	LB_STATUS_ERROR_EXIST = LB_STATUS_ERROR | 0x0008,
	LB_STATUS_ERROR_BUSY = LB_STATUS_ERROR | 0x0010,
	LB_STATUS_ERROR_PERMISSION = LB_STATUS_ERROR | 0x0020,
	LB_STATUS_ERROR_ALREADY = LB_STATUS_ERROR | 0x0040,
	LB_STATUS_ERROR_CANCEL = LB_STATUS_ERROR | 0x0080,
	LB_STATUS_ERROR_IO = LB_STATUS_ERROR | 0x0100,
	LB_STATUS_ERROR_NOT_EXIST = LB_STATUS_ERROR | 0x0200,
	LB_STATUS_ERROR_TIMEOUT = LB_STATUS_ERROR | 0x0400,
	LB_STATUS_ERROR_NOT_IMPLEMENTED = LB_STATUS_ERROR | 0x0800,
	LB_STATUS_ERROR_NO_SPACE = LB_STATUS_ERROR | 0x1000,
};

#define LB_STATUS_IS_ERROR(s)	(!!((s) & LB_STATUS_ERROR))

#ifdef __cplusplus
}
#endif

#endif
/* End of a file */