Initialize Tizen 2.3
[framework/system/oma-dm-agent.git] / src / plugins / dm-private / slp-device-dm / include / plugin_devexe_error.h
1 /*
2  * oma-dm-agent
3  * Copyright (c) 2012 Samsung Electronics Co., Ltd.
4  *
5  * Licensed under the Apache License, Version 2.0 (the License);
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #ifndef PLUGIN_DEVEXE_ERROR_H_
19 #define PLUGIN_DEVEXE_ERROR_H_
20
21 typedef enum {
22
23         EXE_SUCCESS = 1,
24         EXE_DEV_FAIL = -1,
25
26         /* standard error */
27         EXE_DEV_DATA_FAIL = -2,
28         EXE_DEV_OPER_NOT_PERFORMED = -3,
29
30         /* vender specific error */
31
32         /*common */
33         EXE_DEV_AMT_STATUS_OFF = -4,
34         EXEC_DEV_SCREEN_OFF = -5,
35
36         /*wipe */
37         EXE_DEV_WIPE_ALL_FAILED = -10,
38         EXE_DEV_EXTERNAL_MEMORY_FAILED = -11,
39         EXE_DEV_SIM_MEMORY_FAILED = -12,
40
41         /*forwarding */
42         EXE_DEV_FORWORDING_ALL_FAILED = -20,
43         EXE_DEV_FORWORDING_CALL_FAILED = -21,
44         EXE_DEV_FORWORDING_SMS_FAILED = -22
45 } slp_device_dm_exe_e;
46
47 #endif                          /* PLUGIN_DEVEXE_ERROR_H_ */