Merge "Update deprecated libprivilege-control API functions." into tizen
[platform/framework/native/appfw.git] / inc / FBaseErrorDefine.h
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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                FBaseErrorDefine.h
19  * @brief               This header file defines the common error codes.
20  *
21  * This header file contains the definitions of the common error codes.
22  */
23 #ifndef _FBASE_ERROR_DEFINE_H_
24 #define _FBASE_ERROR_DEFINE_H_
25
26 #include <FBaseTypes.h>
27
28 #define E_SEVERITY_POS                  31
29 #define E_TYPE_POS                      29
30
31 #define SET_E_SEVERITY(X)               (static_cast< unsigned long >(PUT_MASK(0, (X), E_SEVERITY_POS)))
32 #define SET_E_TYPE(X)                   (static_cast< unsigned long >(PUT_MASK(0, (X), E_TYPE_POS)))
33 #define SET_E_CAUSE(X)                  (static_cast< unsigned long >(X))
34
35 // Error severities
36 #define E_SUCCESS                       (SET_E_SEVERITY(0))
37 #define E_FAILURE                       (SET_E_SEVERITY(1))
38
39 // Error types
40 #define ERR_SRC_FRAMEWORK               (E_FAILURE + SET_E_TYPE(1))
41 #define ERR_SRC_USER                    (E_FAILURE + SET_E_TYPE(2))
42
43 // Macros for error codes
44 #define IsFailed(X)                     (static_cast< long >(X) != E_SUCCESS)
45
46 #endif //_FBASE_ERROR_DEFINE_H_