+ added descriptive comments for the examples (patch by Reinier Olislagers,

mantis )

git-svn-id: trunk@28882 -
This commit is contained in:
Jonas Maebe 2014-10-19 17:07:59 +00:00
parent 00ea5e1636
commit ada39d530f
2 changed files with 10 additions and 1 deletions
packages/libcurl/examples

View File

@ -11,6 +11,12 @@
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
{
This program demonstrates the use of libcurl.
It requires the libcurl library. Should work on Unix/Linux.
It would need modifications to run on Windows.
}
{$mode objfpc}
{$H+}
program testcurl;

View File

@ -12,8 +12,11 @@
**********************************************************************}
{
This example shows how to use curl and write the result to a TStream.
This example shows how to use curl and write the result to a TStream.
It requires the libcurl library. Should work on Unix/Linux.
It would need modifications to run on Windows.
}
{$mode objfpc}
{$H+}
program teststream;