aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcus Brinkmann <[email protected]>2002-11-22 17:38:31 +0000
committerMarcus Brinkmann <[email protected]>2002-11-22 17:38:31 +0000
commit80e77635cfc4d718a0f6fd7e6d7e5912d0885264 (patch)
tree2647fd463b445c4425e4774e8bd72ca7a7d85ea3
parent2002-11-21 Marcus Brinkmann <[email protected]> (diff)
downloadgpgme-80e77635cfc4d718a0f6fd7e6d7e5912d0885264.tar.gz
gpgme-80e77635cfc4d718a0f6fd7e6d7e5912d0885264.zip
2002-11-22 Marcus Brinkmann <[email protected]>
* gpgme.h [_MSC_VER]: Define ssize_t as long.
Diffstat (limited to '')
-rw-r--r--gpgme/ChangeLog4
-rw-r--r--gpgme/gpgme.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog
index 216e8977..6821198c 100644
--- a/gpgme/ChangeLog
+++ b/gpgme/ChangeLog
@@ -1,3 +1,7 @@
+2002-11-22 Marcus Brinkmann <[email protected]>
+
+ * gpgme.h [_MSC_VER]: Define ssize_t as long.
+
2002-11-21 Marcus Brinkmann <[email protected]>
* decrypt.c: Some beautyfication.
diff --git a/gpgme/gpgme.h b/gpgme/gpgme.h
index 90eef034..6d9e4b73 100644
--- a/gpgme/gpgme.h
+++ b/gpgme/gpgme.h
@@ -24,6 +24,7 @@
#include <stdio.h> /* For FILE *. */
#ifdef _MSC_VER
typedef long off_t;
+ typedef long ssize_t;
#else
# include <sys/types.h>
#endif