cut off old crappy win32 comments and use the proper global_init instead

also removed very old "require libcurl older than blablabla"
This commit is contained in:
Daniel Stenberg
2003-11-19 08:21:34 +00:00
parent 79e4aee185
commit cc48658564
2 changed files with 4 additions and 10 deletions

View File

@@ -21,9 +21,6 @@
* This exact source code has not been verified to work. * This exact source code has not been verified to work.
*/ */
/* to make this work under windows, use the win32-functions from the
win32socket.c file as well */
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
@@ -31,10 +28,6 @@
#include <curl/types.h> #include <curl/types.h>
#include <curl/easy.h> #include <curl/easy.h>
#if LIBCURL_VERSION_NUM < 0x070900
#error "curl_formadd() is not introduced until libcurl 7.9 and later"
#endif
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
CURL *curl; CURL *curl;
@@ -45,6 +38,8 @@ int main(int argc, char *argv[])
struct curl_slist *headerlist=NULL; struct curl_slist *headerlist=NULL;
char buf[] = "Expect:"; char buf[] = "Expect:";
curl_global_init(CURL_GLOBAL_ALL);
/* Fill in the file upload field */ /* Fill in the file upload field */
curl_formadd(&formpost, curl_formadd(&formpost,
&lastptr, &lastptr,

View File

@@ -8,9 +8,6 @@
* $Id$ * $Id$
*/ */
/* to make this work under windows, use the win32-functions from the
win32socket.c file as well */
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h> #include <unistd.h>
@@ -33,6 +30,8 @@ int main(int argc, char **argv)
char *bodyfilename = "body.out"; char *bodyfilename = "body.out";
FILE *bodyfile; FILE *bodyfile;
curl_global_init(CURL_GLOBAL_ALL);
/* init the curl session */ /* init the curl session */
curl_handle = curl_easy_init(); curl_handle = curl_easy_init();