Advertisement
Guest User

Untitled

a guest
Jul 16th, 2016
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.37 KB | None | 0 0
  1. program test6;
  2.  
  3. uses
  4.   LibCurl;
  5.  
  6. Var
  7.   URL : Pchar = 'http://fullcirclemagazine.org/author/ronnie-2/feed/';
  8.   hCurl : pCurl;
  9.  
  10. begin
  11.   hCurl:= curl_easy_init;
  12.   if Assigned(hCurl) then
  13.   begin
  14.     curl_easy_setopt(hCurl,CURLOPT_VERBOSE, [True]);
  15.     curl_easy_setopt(hCurl,CURLOPT_URL,[URL]);
  16.  
  17.     curl_easy_perform(hCurl);
  18.     curl_easy_cleanup(hCurl);
  19.   end;
  20. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement