-
-
Notifications
You must be signed in to change notification settings - Fork 11
libcURL.Version.IsAtLeast
Andrew Lambert edited this page Nov 26, 2022
·
8 revisions
Protected Function IsAtLeast(Major As Integer, Minor As Integer, Patch As Integer) As Boolean
Name | Type | Comment |
---|---|---|
Major | Integer | The major version number |
Minor | Integer | The minor version number |
Patch | Integer | The patch version number |
Returns True
if libcURL is available and is at least the version specified, otherwise returns False. For example, to check for version 7.40.1:
If Not libcURL.Version.IsAtLeast(7, 40, 1) Then
MsgBox("Minimum version not available.")
End If
Wiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2014-24 Andrew Lambert, offered under the CC BY-SA 3.0 License.