File:  [ELWIX - Embedded LightWeight unIX -] / gpl / axl / py-axl / py_axl_error.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Jun 8 07:09:12 2011 UTC (13 years, 1 month ago) by misho
Branches: axl, MAIN
CVS tags: HEAD, AXL0_6_7, AXL0_6_1
3th party - XML

    1: /** 
    2:  *  PyAxl: Axl Library python bindings
    3:  *  Copyright (C) 2009 Advanced Software Production Line, S.L.
    4:  *
    5:  *  This program is free software; you can redistribute it and/or
    6:  *  modify it under the terms of the GNU Lesser General Public License
    7:  *  as published by the Free Software Foundation; either version 2.1
    8:  *  of the License, or (at your option) any later version.
    9:  *
   10:  *  This program is distributed in the hope that it will be useful,
   11:  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
   12:  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   13:  *  Lesser General Public License for more details.
   14:  *
   15:  *  You should have received a copy of the GNU Lesser General Public
   16:  *  License along with this program; if not, write to the Free
   17:  *  Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
   18:  *  02111-1307 USA
   19:  *  
   20:  *  You may find a copy of the license under this software is released
   21:  *  at COPYING file. This is LGPL software: you are welcome to develop
   22:  *  proprietary applications using this library without any royalty or
   23:  *  fee but returning back any change, improvement or addition in the
   24:  *  form of source code, project image, documentation patches, etc.
   25:  *
   26:  *  For commercial support for XML enabled solutions contact us:
   27:  *          
   28:  *      Postal address:
   29:  *         Advanced Software Production Line, S.L.
   30:  *         C/ Antonio Suarez Nº 10, 
   31:  *         Edificio Alius A, Despacho 102
   32:  *         Alcalá de Henares 28802 (Madrid)
   33:  *         Spain
   34:  *
   35:  *      Email address:
   36:  *         info@aspl.es - http://www.aspl.es/axl
   37:  */
   38: 
   39: #ifndef __PY_AXL_ERROR_H__
   40: #define __PY_AXL_ERROR_H__
   41: 
   42: /** 
   43:  * @brief Object definition that represents the Python encapsulation
   44:  * for axlError type.
   45:  */
   46: typedef struct _PyAxlError PyAxlError;
   47: 
   48: #include <py_axl.h>
   49: 
   50: axl_bool     py_axl_error_check     (PyObject * obj);
   51: 
   52: PyObject   * py_axl_error_create    (axlError * error); 
   53: 
   54: void         init_axl_error         (PyObject * module);
   55: 
   56: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>