-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9133a68
commit 6f4f8db
Showing
6 changed files
with
198 additions
and
247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
!** libcurl for Clarion v1.34 | ||
!** 01.09.2018 | ||
!** libcurl for Clarion v1.36 | ||
!** 10.09.2018 | ||
!** [email protected] | ||
|
||
MEMBER | ||
|
@@ -227,6 +227,11 @@ bRead BOOL | |
END | ||
|
||
RETURN sData | ||
|
||
curl::StrError PROCEDURE(CURLcode errcode) | ||
CODE | ||
RETURN curl_easy_strerror(errcode) | ||
|
||
!!!endregion | ||
|
||
!!!region curl global functions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
!** libcurl for Clarion v1.35 | ||
!** 04.09.2018 | ||
!** libcurl for Clarion v1.36 | ||
!** 10.09.2018 | ||
!** [email protected] | ||
|
||
INCLUDE('DynStr.inc'), ONCE | ||
|
@@ -777,6 +777,8 @@ filled LONG !bytes written | |
curl::GlobalInit(CURL_GLOBAL_ENUM pFlag = CURL_GLOBAL_DEFAULT), CURLcode, PROC | ||
curl::GlobalCleanup() | ||
curl::StrError(CURLcode errcode), STRING | ||
END | ||
! CreateFile, WriteFile, CloseHandle etc | ||
|
@@ -1027,6 +1029,7 @@ SetOptions PROCEDURE(), CURLcode, PROC, VIRTUAL, PROTECTED | |
CreateHeader PROCEDURE(*TCurlMailData mail), PRIVATE | ||
CreateBody PROCEDURE(*TCurlMailData mail), PRIVATE | ||
CreateAttachments PROCEDURE(*TCurlMailData mail), PRIVATE | ||
HasInlineAttachments PROCEDURE(), BOOL, PRIVATE | ||
Server PROCEDURE(STRING pServer, LONG pPort, <STRING pHelo>) !smtp.gmail.com, 587 | ||
|
@@ -1432,4 +1435,6 @@ SetSubparts PROCEDURE(curl_mimepart part, TCurlMimeClass sub | |
!!!<param name="pHugeData">pointer to the data bytes.</param> | ||
!!!<param name="pDoDispose">call DISPOSE(pHugeData) after the transfer terminates.</param> | ||
SetDataCB PROCEDURE(curl_mimepart part, CONST *STRING pHugeData, BOOL pDoDispose = FALSE), CURLcode, PROC | ||
|
||
|
||
END |
Oops, something went wrong.