-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy patherr.h
52 lines (48 loc) · 1.33 KB
/
err.h
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
50
51
52
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license in the file COPYING
* or http://www.opensource.org/licenses/CDDL-1.0.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file COPYING.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2015 Saso Kiselkov. All rights reserved.
*/
#ifndef _OPENFMC_ERR_H_
#define _OPENFMC_ERR_H_
typedef enum {
ERR_OK = 0,
ERR_ARPT_NOT_FOUND,
ERR_INVALID_DELETE,
ERR_AWY_AWY_MISMATCH,
ERR_AWY_WPT_MISMATCH,
ERR_AWY_PROC_MISMATCH,
ERR_WPT_PROC_MISMATCH,
ERR_INVALID_AWY,
ERR_DUPLICATE_LEG,
ERR_INVALID_ENTRY,
ERR_INVALID_RWY,
ERR_INVALID_SID,
ERR_INVALID_STAR,
ERR_INVALID_FINAL,
ERR_INVALID_TRANS,
ERR_NOT_IN_DATABASE,
ERR_UNABLE_NEXT_ALT,
NUM_ERRS
} err_t;
const char *err2str(err_t err);
#endif /* _OPENFMC_ERR_H_ */