diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:20:29 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:20:29 -0700 |
commit | 14763ac7c6c03bca62c39e35c03cf5bfc7728802 (patch) | |
tree | f1055d11ef7b282b698ce7c40e1a9c061413cbdf /contrib/visual-basic.txt | |
parent | c34c1fcbb19852ca35216ad66276f4f86af3fc22 (diff) | |
download | zlib-1.1.3.tar.gz zlib-1.1.3.tar.bz2 zlib-1.1.3.zip |
zlib 1.1.3v1.1.3
Diffstat (limited to 'contrib/visual-basic.txt')
-rw-r--r-- | contrib/visual-basic.txt | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/contrib/visual-basic.txt b/contrib/visual-basic.txt index 18aa084..10fb44b 100644 --- a/contrib/visual-basic.txt +++ b/contrib/visual-basic.txt | |||
@@ -1,5 +1,17 @@ | |||
1 | See below some functions declarations for Visual Basic. | ||
2 | |||
3 | Frequently Asked Question: | ||
4 | |||
5 | Q: Each time I use the compress function I get the -5 error (not enough | ||
6 | room in the output buffer). | ||
7 | |||
8 | A: Make sure that the length of the compressed buffer is passed by | ||
9 | reference ("as any"), not by value ("as long"). Also check that | ||
10 | before the call of compress this length is equal to the total size of | ||
11 | the compressed buffer and not zero. | ||
12 | |||
13 | |||
1 | From: "Jon Caruana" <jon-net@usa.net> | 14 | From: "Jon Caruana" <jon-net@usa.net> |
2 | To: "Jean-loup Gailly" <gzip@prep.ai.mit.edu> | ||
3 | Subject: Re: How to port zlib declares to vb? | 15 | Subject: Re: How to port zlib declares to vb? |
4 | Date: Mon, 28 Oct 1996 18:33:03 -0600 | 16 | Date: Mon, 28 Oct 1996 18:33:03 -0600 |
5 | 17 | ||