aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32-ce.h
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-ce.h
parentMore include guards. (diff)
downloadgpgme-83d88d444eef15e128dd4080d6b1978b4d8657c2.tar.gz
gpgme-83d88d444eef15e128dd4080d6b1978b4d8657c2.zip
Hopefully last changes for building with MSC.
Diffstat (limited to '')
-rw-r--r--src/w32-ce.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/w32-ce.h b/src/w32-ce.h
index 2bc34ca7..9be361f7 100644
--- a/src/w32-ce.h
+++ b/src/w32-ce.h
@@ -70,6 +70,11 @@ BOOL SHGetSpecialFolderPathA(HWND,LPSTR,int,BOOL);
int _gpgme_wince_access (const char *fname, int mode);
#define access(a,b) _gpgme_wince_access ((a), (b))
+void *_gpgme_wince_bsearch (const void *key, const void *base,
+ size_t nmemb, size_t size,
+ int (*compar) (const void *, const void *));
+#define bsearch(a,b,c,d,e) _gpgme_wince_bsearch ((a),(b),(c),(d),(e))
+
#endif /* GPGME_W32_CE_H */