Blame lasso/ctypes.h

Packit 228f82
/* $Id$
Packit 228f82
 *
Packit 228f82
 * Lasso - A free implementation of the Liberty Alliance specifications.
Packit 228f82
 *
Packit 228f82
 * Copyright (C) 2004-2007 Entr'ouvert
Packit 228f82
 * http://lasso.entrouvert.org
Packit 228f82
 *
Packit 228f82
 * Authors: See AUTHORS file in top-level directory.
Packit 228f82
 *
Packit 228f82
 * This program is free software; you can redistribute it and/or modify
Packit 228f82
 * it under the terms of the GNU General Public License as published by
Packit 228f82
 * the Free Software Foundation; either version 2 of the License, or
Packit 228f82
 * (at your option) any later version.
Packit 228f82
 *
Packit 228f82
 * This program is distributed in the hope that it will be useful,
Packit 228f82
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 228f82
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 228f82
 * GNU General Public License for more details.
Packit 228f82
 *
Packit 228f82
 * You should have received a copy of the GNU General Public License
Packit 228f82
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Packit 228f82
 */
Packit 228f82
Packit 228f82
#ifndef __LASSO_CTYPES_H__
Packit 228f82
#define __LASSO_CTYPES_H__
Packit 228f82
Packit 228f82
#ifdef __cplusplus
Packit 228f82
extern "C" {
Packit 228f82
#endif /* __cplusplus */
Packit 228f82
Packit 228f82
/* Mark error returning functions */
Packit 228f82
typedef int lasso_error_t;
Packit 228f82
Packit 228f82
#ifdef __cplusplus
Packit 228f82
}
Packit 228f82
#endif /* __cplusplus */
Packit 228f82
Packit 228f82
#endif /* __LASSO_CTYPES_H__ */