RSSyl: Allow use of .netrc by libcurl. Bug/enhancement #3309, by Vincent Pelletier
[claws.git] / src / plugins / tnef_parse / tnef-errors.h
1 /*
2 *    Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3 *    Copyright (C) 2004-2014 Colin Leroy and the Claws Mail team
4 *
5 *    Yerase's TNEF Stream Reader Library
6 *    Copyright (C) 2003  Randall E. Hand
7 *
8 *    This program is free software; you can redistribute it and/or modify
9 *    it under the terms of the GNU General Public License as published by
10 *    the Free Software Foundation; either version 3 of the License, or
11 *    (at your option) any later version.
12 *
13 *    This program is distributed in the hope that it will be useful,
14 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *    GNU General Public License for more details.
17 *
18 *    You should have received a copy of the GNU General Public License
19 *    along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 *    You can contact me at randall.hand@gmail.com for questions or assistance
22 */
23 #ifndef _TNEF_ERRORS_
24 #define _TNEF_ERRORS_
25
26
27 #define YTNEF_CANNOT_INIT_DATA -1
28 #define YTNEF_NOT_TNEF_STREAM  -2
29 #define YTNEF_ERROR_READING_DATA -3
30 #define YTNEF_NO_KEY -4
31 #define YTNEF_BAD_CHECKSUM -5
32 #define YTNEF_ERROR_IN_HANDLER -6
33 #define YTNEF_UNKNOWN_PROPERTY -7
34 #define YTNEF_INCORRECT_SETUP -8
35
36
37 #endif
38