*** empty log message ***

This commit is contained in:
Timo Schulz 2003-08-14 12:16:58 +00:00
parent 2bf665e188
commit f099ed75b8
2 changed files with 6 additions and 8 deletions

View File

@ -1,6 +1,6 @@
2003-08-14 Timo Schulz <twoaday@freakmail.de> 2003-08-14 Timo Schulz <twoaday@freakmail.de>
* dlfcn.h. New. W32 wrapper around the dynload mechanism. * dynload.h. New. W32 wrapper around the dynload mechanism.
2003-07-15 Werner Koch <wk@gnupg.org> 2003-07-15 Werner Koch <wk@gnupg.org>

View File

@ -18,12 +18,11 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#ifndef GNUPG_DYNLOAD_H
#define GNUPG_DYNLOAD_H
#ifndef __MINGW32__ #ifndef __MINGW32__
#include <dlfcn.h> /* include the actual header file */ #include <dlfcn.h>
#else #else
#ifndef W32_DLFCN_H
#define W32_DLFCN_H
#include <windows.h> #include <windows.h>
static __inline__ void * static __inline__ void *
@ -66,6 +65,5 @@ dlclose (void * hd)
} }
return -1; return -1;
} }
#endif /*__MINGW32__*/
#endif /*W32_DLFCN_H*/ #endif /*GNUPG_DYNLOAD_H*/
#endif