00001 /* 00002 * MUSCLE SmartCard Development ( http://www.linuxnet.com ) 00003 * 00004 * Copyright (C) 1999 00005 * David Corcoran <corcoran@linuxnet.com> 00006 * Copyright (C) 2002-2009 00007 * Ludovic Rousseau <ludovic.rousseau@free.fr> 00008 * 00009 * $Id: dyn_generic.h 4544 2009-11-12 14:33:44Z rousseau $ 00010 */ 00011 00017 #ifndef __dyn_generic_h__ 00018 #define __dyn_generic_h__ 00019 00020 #ifdef __cplusplus 00021 extern "C" 00022 { 00023 #endif 00024 00025 int DYN_LoadLibrary(void **, char *); 00026 int DYN_CloseLibrary(void **); 00027 int DYN_GetAddress(void *, /*@out@*/ void **, const char *); 00028 00029 #ifdef __cplusplus 00030 } 00031 #endif 00032 00033 #endif