1 /***************************************************************************
2   $RCSfile$
3                              -------------------
4     cvs         : $Id$
5     begin       : Fri Nov 22 2002
6     copyright   : (C) 2002 by Martin Preuss
7     email       : martin@libchipcard.de
8 
9 
10  ***************************************************************************
11  *                                                                         *
12  *   This library is free software; you can redistribute it and/or         *
13  *   modify it under the terms of the GNU Lesser General Public            *
14  *   License as published by the Free Software Foundation; either          *
15  *   version 2.1 of the License, or (at your option) any later version.    *
16  *                                                                         *
17  *   This library is distributed in the hope that it will be useful,       *
18  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
19  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU     *
20  *   Lesser General Public License for more details.                       *
21  *                                                                         *
22  *   You should have received a copy of the GNU Lesser General Public      *
23  *   License along with this library; if not, write to the Free Software   *
24  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston,                 *
25  *   MA  02111-1307  USA                                                   *
26  *                                                                         *
27  ***************************************************************************/
28 
29 
30 #ifndef GWENHYWFAR_LIBLOADER_P_H
31 #define GWENHYWFAR_LIBLOADER_P_H "$Id"
32 
33 #include <gwenhywfar/gwenhywfarapi.h>
34 #include <gwenhywfar/libloader.h>
35 #include <gwenhywfar/error.h>
36 
37 
38 struct GWEN_LIBLOADER {
39   void *handle;
40 };
41 
42 
43 int GWEN_LibLoader_LoadLibrary(GWEN_LIBLOADER *h, const char *name);
44 
45 
46 #endif /* GWENHYWFAR_LIBLOADER_P_H */
47 
48 
49