aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32-util.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2010-11-03 10:33:10 +0000
committerWerner Koch <[email protected]>2010-11-03 10:33:10 +0000
commit83d88d444eef15e128dd4080d6b1978b4d8657c2 (patch)
tree3dd805f4b85a230cb4ed86d79625b43f99a47a42 /src/w32-util.c
parentMore include guards. (diff)
downloadgpgme-83d88d444eef15e128dd4080d6b1978b4d8657c2.tar.gz
gpgme-83d88d444eef15e128dd4080d6b1978b4d8657c2.zip
Hopefully last changes for building with MSC.
Diffstat (limited to 'src/w32-util.c')
-rw-r--r--src/w32-util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/w32-util.c b/src/w32-util.c
index 532f89e9..50052dee 100644
--- a/src/w32-util.c
+++ b/src/w32-util.c
@@ -76,14 +76,14 @@ DEFINE_STATIC_LOCK (get_path_lock);
#define RTLD_LAZY 0
-static __inline__ void *
+static GPG_ERR_INLINE void *
dlopen (const char * name, int flag)
{
void * hd = LoadLibrary (name);
return hd;
}
-static __inline__ void *
+static GPG_ERR_INLINE void *
dlsym (void * hd, const char * sym)
{
if (hd && sym)
@@ -96,7 +96,7 @@ dlsym (void * hd, const char * sym)
return NULL;
}
-static __inline__ int
+static GPG_ERR_INLINE int
dlclose (void * hd)
{
if (hd)