summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-01-22 08:42:00 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-01-22 08:42:00 +0000
commit41084e57ca13be387a34cb645224885723fda8a5 (patch)
treee7722f030d7693b5e90539fcce51e4b0807dc103
parent9afab85105e202b22791fe55008f682260070304 (diff)
downloadgnurl-41084e57ca13be387a34cb645224885723fda8a5.tar.gz
gnurl-41084e57ca13be387a34cb645224885723fda8a5.tar.bz2
gnurl-41084e57ca13be387a34cb645224885723fda8a5.zip
Added 5.5 the CURLOPT_FILE problem on win32, DeYoung provided it!
-rw-r--r--docs/FAQ12
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/FAQ b/docs/FAQ
index c88fcd0c4..260023ce2 100644
--- a/docs/FAQ
+++ b/docs/FAQ
@@ -1,4 +1,4 @@
-Updated: January 15, 2001 (http://curl.haxx.se/docs/faq.shtml)
+Updated: January 22, 2001 (http://curl.haxx.se/docs/faq.shtml)
_ _ ____ _
___| | | | _ \| |
/ __| | | | |_) | |
@@ -52,6 +52,7 @@ FAQ
5.2 How can I receive all data into a large memory chunk?
5.3 How do I fetch multiple files with libcurl?
5.4 Does libcurl do Winsock initing on win32 systems?
+ 5.5 Does CURLOPT_FILE work on win32 ?
6. License Issues
6.1 I have a GPL program, can I use the libcurl library?
@@ -472,6 +473,15 @@ FAQ
use several different libraries and parts, and there's no reason for every
single library to do this.
+ 5.5 Does CURLOPT_FILE work on win32 ?
+
+ Yes, but you cannot open a FILE * and pass the pointer to a DLL and have
+ that DLL use the FILE *. You must use CURLOPT_WRITEFUNCTION as well to set a
+ function that writes the file, even if that simply writes the data to the
+ specified FILE*.
+
+ (provided by Joel DeYoung)
+
6. License Issues
NOTE: This section is now updated to concern curl 7.5.2 or later!