Modify ↓
      
        Opened 8 years ago
Closed 8 years ago
#3594 closed Bug (Fixed)
Error in FTPEx.au3, Autoit version 3.3.14.13
| Reported by: | mochi82@… | Owned by: | |
|---|---|---|---|
| Milestone: | Component: | AutoIt | |
| Version: | 3.3.14.3 | Severity: | None | 
| Keywords: | Cc: | 
Description
This error does not exist in 3.3.14.0, haven't checked with intermediate versions.
Line 351 (File "C:\program files\Autoit3\Include\FTPEx.au3)
Return _WinAPI_MakeQWord($ai_FTPGetFileSize[0],$ai_FTPGetFileSize[2])
Return  ERROR
Error: Unknown function name.
Code that causes it is for example :
$ftpfilesize =_FTP_FileGetSize ($myFTPconn, $myftpfile)
Attachments (0)
Change History (2)
comment:1 Changed 8 years ago by Melba23
    Version 0, edited 8 years ago
        by Melba23
      (next)
  
              comment:2 Changed 8 years ago by Melba23
- Resolution set to Fixed
- Status changed from new to closed
Guidelines for posting comments:
- You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
- In-depth discussions should take place on the forum.
For more information see the full version of the ticket guidelines here.
Note: See
        TracTickets for help on using
        tickets.
    

The _WinAPI_MakeQWord function is found in WinAPIConv.au3 - which library is not called by FTPEx.au3.
Could you please add the following line at the top of your script and see if it works them:
#include <WinAPIConv.au3>
If it does then we will add the missing include to FTPEx.au3.
M23