-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathgmt_error_codes.h
126 lines (121 loc) · 3.09 KB
/
gmt_error_codes.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*--------------------------------------------------------------------
*
* Copyright (c) 1991-2025 by the GMT Team (https://www.generic-mapping-tools.org/team.html)
* See LICENSE.TXT file for copying and redistribution conditions.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3 or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* Contact info: www.generic-mapping-tools.org
*--------------------------------------------------------------------*/
/*
* Include file for GMT API error codes
*
* Author: Paul Wessel
* Date: 22-JUN-2012
* Version: 6 API
*/
/*!
* \file gmt_error_codes.h
* \brief Include file for GMT API error codes
*/
#ifndef GMT_ERROR_CODES_H
#define GMT_ERROR_CODES_H
#include "declspec.h"
/* External array with error descriptions */
EXTERN_MSC const char* gmt_api_error_string[];
enum Gmt_api_error_code {
GMT_OK = 0,
GMT_WRONG_MATRIX_SHAPE,
GMT_ACCESS_NOT_ENABLED,
GMT_ARGV_LIST_NULL,
GMT_ARG_IS_NULL,
GMT_COUNTER_IS_NEGATIVE,
GMT_BAD_GEOMETRY,
GMT_BAD_PERMISSION,
GMT_CPT_READ_ERROR,
GMT_DATA_READ_ERROR,
GMT_DATA_WRITE_ERROR,
GMT_DIM_TOO_LARGE,
GMT_DIM_TOO_SMALL,
GMT_ERROR_ON_FCLOSE,
GMT_ERROR_ON_FDOPEN,
GMT_ERROR_ON_FOPEN,
GMT_FILE_NOT_FOUND,
GMT_GRID_BC_ERROR,
GMT_GRID_READ_ERROR,
GMT_GRID_WRITE_ERROR,
GMT_ID_TOO_LARGE,
GMT_IMAGE_BC_ERROR,
GMT_IMAGE_READ_ERROR,
GMT_IMAGE_WRITE_ERROR,
GMT_IMAGE_NO_DATA,
GMT_MEMORY_ERROR,
GMT_FREE_EXTERNAL_NOT_ALLOWED,
GMT_FREE_WRONG_LEVEL,
GMT_LOGGING_ALREADY_ACTIVE,
GMT_NOT_A_SESSION,
GMT_NOT_MODERN_MODE,
GMT_NOT_A_VALID_ARG,
GMT_NOT_A_VALID_DIRECTION,
GMT_NOT_A_VALID_DIRECTORY,
GMT_NOT_A_VALID_DOMAIN,
GMT_NOT_A_VALID_FAMILY,
GMT_NOT_A_VALID_LOGMODE,
GMT_WRONG_FAMILY,
GMT_NOT_A_VALID_ID,
GMT_NOT_A_VALID_IO_ACCESS,
GMT_NOT_A_VALID_IO_MODE,
GMT_NOT_A_VALID_IO_SESSION,
GMT_NOT_A_VALID_METHOD,
GMT_NOT_A_VALID_MODE,
GMT_NOT_A_VALID_MODIFIER,
GMT_NOT_A_VALID_MODULE,
GMT_NOT_A_VALID_OPTION,
GMT_NOT_A_VALID_PARAMETER,
GMT_NOT_A_VALID_TYPE,
GMT_NOT_INPUT_OBJECT,
GMT_NOT_OUTPUT_OBJECT,
GMT_NO_GRDHEADER,
GMT_NO_INPUT,
GMT_NO_OUTPUT,
GMT_NO_PARAMETERS,
GMT_NO_RESOURCES,
GMT_NO_CPT,
GMT_N_COLS_NOT_SET,
GMT_N_COLS_VARY,
GMT_N_ROWS_NOT_SET,
GMT_OBJECT_NOT_FOUND,
GMT_OGR_ONE_TABLE_ONLY,
GMT_ONLY_ONE_ALLOWED,
GMT_OPTION_EXIST,
GMT_OPTION_HISTORY_ERROR,
GMT_OPTION_IS_NULL,
GMT_OPTION_LIST_NULL,
GMT_OPTION_NOT_ALLOWED,
GMT_OPTION_NOT_FOUND,
GMT_OPTION_SORT_ERROR,
GMT_OUTPUT_NOT_SET,
GMT_PADDING_NOT_ALLOWED,
GMT_PARSE_ERROR,
GMT_PROG_NOT_FOUND,
GMT_PROJECTION_ERROR,
GMT_PTR_IS_NULL,
GMT_PTR_NOT_NULL,
GMT_PTR_NOT_UNIQUE,
GMT_READ_ONCE,
GMT_RUNTIME_ERROR,
GMT_SIZE_IS_ZERO,
GMT_STREAM_NOT_ALLOWED,
GMT_SUBSET_NOT_ALLOWED,
GMT_VALUE_NOT_SET,
GMT_NO_STRINGS_ALLOWED,
GMT_WRITTEN_ONCE
};
#endif /* GMT_ERROR_CODES_H */