pellelil Posted November 10, 2020 Report Posted November 10, 2020 A Danish guy contacted me regarding an error he got when using the the Delphi-port of the SDK. I had a look at it and and there is a small change that is needed since Delphi 2009. So if you plan to update the SDK at any time, in the file FPCuser.Pas in function "FSUIPC_Open" the "szName" variable need to be changed from "AnsiString" to "String". Hence from: Function FSUIPC_Open(dwFSReq : DWORD; var dwResult : DWORD) : Boolean; var szName : AnsiString; to: Function FSUIPC_Open(dwFSReq : DWORD; var dwResult : DWORD) : Boolean; var szName : String;
John Dowson Posted November 10, 2020 Report Posted November 10, 2020 Ok, thanks for the report. I'll update in the next few days (it will be included in the next release of FSUIPC6/7, and I'll update the downloadable SDK zip file). Cheers, John
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now