Преглед на файлове

Merge pull request #9 from thareh/master

Changed FileTime to Long instead of Int
Brucey преди 2 години
родител
ревизия
7fa0bc5ad3
променени са 1 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 3 3
      libcurl.mod/curlmain.bmx

+ 3 - 3
libcurl.mod/curlmain.bmx

@@ -1011,10 +1011,10 @@ Type TCurlInfo
 	tell the server to collect this information before the transfer is made, by using the #CURLOPT_FILETIME option
 	to #setOptInt or you will unconditionally get a -1 back.
 	End Rem
-	Method FileTime:Int()
-		Local value:Int
+	Method FileTime:Long()
+		Local value:Long
 		
-		error = bmx_curl_easy_getinfo_int(easyHandlePtr, CURLINFO_FILETIME, Varptr value)
+		error = bmx_curl_easy_getinfo_long(easyHandlePtr, CURLINFO_FILETIME, Varptr value)
 		
 		Return value
 	End Method