00001 /* 00002 * MUSCLE SmartCard Development ( http://www.linuxnet.com ) 00003 * 00004 * Copyright (C) 1999 00005 * David Corcoran <corcoran@linuxnet.com> 00006 * 00007 * $Id: dyn_generic.h 3260 2009-01-02 15:19:59Z rousseau $ 00008 */ 00009 00015 #ifndef __dyn_generic_h__ 00016 #define __dyn_generic_h__ 00017 00018 #ifdef __cplusplus 00019 extern "C" 00020 { 00021 #endif 00022 00023 int DYN_LoadLibrary(void **, char *); 00024 int DYN_CloseLibrary(void **); 00025 int DYN_GetAddress(void *, /*@out@*/ void **, const char *); 00026 00027 #ifdef __cplusplus 00028 } 00029 #endif 00030 00031 #endif