diff options
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 | ||