/* * libcsync -- a library to sync a directory with another * * Copyright (c) 2006 by Andreas Schneider * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef _CSYNC_MACROS_H #define _CSYNC_MACROS_H #include #include /* How many elements there are in a static array */ #define ARRAY_SIZE(a) (sizeof(a)/sizeof(a[0])) /* Some special errno values to report bugs properly */ #define CSYNC_CUSTOM_ERRNO_BASE 10000 #define ERRNO_GENERAL_ERROR CSYNC_CUSTOM_ERRNO_BASE+2 #define ERRNO_LOOKUP_ERROR CSYNC_CUSTOM_ERRNO_BASE+3 #define ERRNO_USER_UNKNOWN_ON_SERVER CSYNC_CUSTOM_ERRNO_BASE+4 #define ERRNO_PROXY_AUTH CSYNC_CUSTOM_ERRNO_BASE+5 #define ERRNO_CONNECT CSYNC_CUSTOM_ERRNO_BASE+6 #define ERRNO_TIMEOUT CSYNC_CUSTOM_ERRNO_BASE+7 #define ERRNO_PRECONDITION CSYNC_CUSTOM_ERRNO_BASE+8 #define ERRNO_RETRY CSYNC_CUSTOM_ERRNO_BASE+9 #define ERRNO_REDIRECT CSYNC_CUSTOM_ERRNO_BASE+10 #define ERRNO_WRONG_CONTENT CSYNC_CUSTOM_ERRNO_BASE+11 #define ERRNO_TIMEDELTA CSYNC_CUSTOM_ERRNO_BASE+12 #define ERRNO_ERROR_STRING CSYNC_CUSTOM_ERRNO_BASE+13 #endif /* _CSYNC_MACROS_H */ /* vim: set ft=c.doxygen ts=8 sw=2 et cindent: */