| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: MJS@mjs.us
09-11-2026, 09:49 PM
» Replies: 1
» Views: 189
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 154
|
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 171
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 475
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 242
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 642
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 225
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,242
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 358
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 985
|
|
|
| A couple of http.sys issues! |
|
Posted by: TonyNZ - 05-09-2019, 09:38 AM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
A bit of background. I have, at a client's site, approx. 6 - 8 Intraweb SA servers running on a virtual Windows 2018 server (using http.sys and running on port 80). I have limited control over what the hosting crowd decide in terms of virus / malware / windows patch update timetables etc. The reason that multiple servers run on one VM is essentially related to costs to the client. Some of the Intraweb servers have 1,000 clients, others have 50! The reason they are SA (instead of a service) is simply to do with ease of monitoring them! Eventually I will develop a "monitoring app" that will tell if a server has stopped etc.
To the issues (and this is more a query if anyone else has struck these):
1) If one of the SA servers is down and a client tries to login they don't get an error. The simply get the login screen for one of the other SAs that is running. Which confuses the client! Is there a way of having a "default" SA server ... like a 404 page!
2) Shutting down one of these SA servers causes Windows Explorer to "lock up"! This is a bit difficult to explain ... but if you close the server and there is then no desktop response. I'm on a remote connection so I know that Windows hasn't locked ... I can still do file transfers etc. If you wait long enough (15 - 30 minutes) Windows does come back (sometimes with the "Explorer has stopped responding message") and you can recover, without a reboot etc. Of course I never have such an issue on my development computer. This may be related to running them as "application" as opposed to services.
Anyway just seeing if anyone else has had such issues.
|
|
|
| How to handle exceptions TIdTcpServer, TIdTcpClient |
|
Posted by: whitekn3 - 05-08-2019, 01:24 PM - Forum: Indy
- Replies (2)
|
 |
I recently took over development/maintenance on a project written in Builder C++ 6 and just converted to Indy 10. Some quirky unexpected problems occurred that seem to be related to the error handling. I am pretty much a novice when it comes to Indy so I'm struggling to figure it all out.
Web searches found several comments by RLebeau that said "let the server handle the exceptions". I looked, but never found, for code samples that would clarify what he meant.
In this case TIdTcpServer Execute calls DoPassthruServerExecute, which calls HandleFirstCallerMessage, both of which have try ... catch sections. There is also a TIdTcpClient and a ReceiveThread (TThread, TIdContext which is passed the server context) that has a try .. catch block, and which catches EIdConnClosedGracefully.
I've attached a stripped down code that has all the essential code and error handling. I would greatly appreciate it if someone could take a look at it and let me know if they see any obvious problems or design issues.
Thanks.
|
|
|
| Warning about PDF resource |
|
Posted by: cprmlao@hotmail.com - 05-06-2019, 09:02 PM - Forum: IntraWeb General Discussion
- Replies (4)
|
 |
Hi,
When I use the next code with ModalWindow to download a pdf I am getting the next message in chrome console.
The PDF is downloaded but I get the warning.
Is there a way to avoid it?
Code: IWBase__ED463BD0B.js:4 Resource interpreted as Document but transferred with MIME type application/pdf
Code: with IWModalWindow1 do begin
Reset;
Autosize := False;
Title := 'Bulário';
Draggable := False;
WindowWidth := 95;
WindowHeight := 95;
Src := 'http://mysite/document.pdf';
OnAsyncClick := nil;
Show;
end;
Regards, Luiz
|
|
|
| TIWButton |
|
Posted by: ShaneStump - 05-04-2019, 11:04 PM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
Howdy All!
I have a few places where I am using the 'stock' IW buttons where I need events that are NOT asynchronous.
In all my uses of TIWBSButtons, I use the RawText property that allows me to format my buttons caption as needed.
With the default TIWButton, it sets the caption as a Value attribute.
Without modifying the IW source code, how can I set the TIWButton caption using RawText like I do with TIWBSButton?
Thanks in advance,
Shane
|
|
|
| IWLocker |
|
Posted by: ShaneStump - 05-04-2019, 03:13 AM - Forum: IntraWeb General Discussion
- Replies (11)
|
 |
Howdy All!
I am putting the final touches on my new web responsive web app and I am running into several problems with IWLocker:
1) If the current page has been scrolled to where the top of the page is outside of the view port and the IWLocker gets called, it is NOT shown in the because it is being displayed based on the top of the page.
2) I need the ability to make the displayed image responsive. It really would be nice if the IWLocker allowed multiple size breaks.
I am guessing the IWLocker is a javascript function. Where is it so i can try to make the above changes or does anyone have an alternate solution that works in a similar fashion as the IWLocker.
** UPDATE**
I woke up and decided the 'default IW' loading image would be fine if it fixed the above problem. I cleared my image and tried it.... if the current page is still scrolled beyond the top of the initial page, the same results.
THanks,
Shane
|
|
|
| TIdHTTP Lightstreamer Client |
|
Posted by: rsiw2000 - 05-03-2019, 11:55 AM - Forum: Indy
- Replies (6)
|
 |
Hello,
I´m trying to write a Lightstreamer client using C++ Builder Tokyo and TIdHTTP component.
I wrote this code based on the python client demo.
TIdHTTP is receiving data using a simple TStream descendant and I get these data on the Write method.
This is part of the connection thread, it creates the session and stay connected to receive data.
Code: pHTTP = new TIdHTTP(0);
pHTTP->Request->CustomHeaders->Add("Accept: */*");
pHTTP->Request->CustomHeaders->Add("Content-Type: application/x-www-form-urlencoded");
pHTTP->Request->CustomHeaders->Add("Connection: Keep-Alive");
UnicodeString params, url = L"http://push.lightstreamer.com/lightstreamer/create_session.txt";
params.sprintf(L"LS_op2=create&LS_cid=mgQkwtwdysogQz2BJ4Ji+kOj2Bg&LS_adapter_set=DEMO&LS_protocol=TLCP-2.1.0";
// parametros
params = TIdURI::ParamsEncode(params, enUTF8);
// conexão
pSSParams = new TStringStream(params);
pHTTP->Post(url, pSSParams, pClienteLS->RcvdStream);
The connection returns the following headers:
Quote:HTTP/1.0 200 OK
Server: Lightstreamer-Server/7.1.0 b4 build 1915 (Lightstreamer Server - www.lightstreamer.com) ENTERPRISE edition
Content-Type: text/enriched; charset=ISO-8859-1
Cache-Control: no-store
Cache-Control: no-transform
Cache-Control: no-cache
Pragma: no-cache
Expires: Thu, 1 Jan 1970 00:00:00 GMT
Date: Fri, 3 May 2019 12:03:13 GMT
Content-Length: 500000
Connection: Keep-Alive
x-accel-buffering: no
When SessionId arrives, I subscribe some stocks using another TIdHTTP and stock data becomes to arrive.
Server is sending data all the time, but TIdHTTP connects and receives some data, then stops for a few minutes, then another block of data arrives, then stops again, then receive another block, a lot of times.
It seems like to be filling a buffer, precisely a 32k (32768 bytes) buffer.
When I force TIdHTTP to disconnect, remaining data arrives in the Write method.
So:
What i'm doing wrong ?
Why received data does not reaches the stream Write method immediately ?
At the python example there's no different header (no header, in fact.).
The Lightstreamer docs also does not have any reference to the need of some specific header.
|
|
|
| Problems Installing IW 14.2.10 in Delphi 10.3.1 |
|
Posted by: andrews - 05-02-2019, 06:57 PM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
394/5000
[color=rgba(0, 0, 0, 0.87)]Hi, I tried my Delphi Rio Update 1 (Delphi 10.3.1), but I am not able to install IW 14.2.10 after installing the IW paracede disabled in Install Packages and when enabled this error appears:[/color]
[color=rgba(0, 0, 0, 0.87)]
Can not load package C: \ Users \ ..... \ dclIntraweb_10_D10_3.bpl. The specified module could not be found.
Is the IW 14.2.10 version compatible with Delphi 10.3.1?
Thank you.[/color]
|
|
|
Indy 10 compilation/installation C++Builder XE7 |
|
Posted by: Pieter - 04-30-2019, 06:43 PM - Forum: Indy
- No Replies
|
 |
Hi,
I am having some problems compiling the latest Indy components for C++Builder XE7.
I am using Windows 10 Pro.
Rebuilding using Fullc_XE7.bat/Fullc_All.bat does not produce the required .bpl files for XE7.
For Rio everything (compilation/installation) worked fine.
There are two warnings that comes up while running the script, don't know if this might have side effects.
It also said that system cannot find : "C:\Users\Public\Documents\Embarcadero\Studio\15.0\Bpl\*Indy*.bpl"
The problem seems to be pointing there.. Ran the Fullc_XE7.bat script again but with the line deleting the files "del /Q *.*" removed. And then found the bpl files there, but could not install the components.
Code: PS C:\Indy10\trunk\Lib> .\Fullc_All.bat
Resetting registry rootkey to HKCU, and retrying
Compiler not installed!
Error!
Press any key to continue . . .
Resetting registry rootkey to HKCU, and retrying
Compiler not installed!
Error!
Press any key to continue . . .
Resetting registry rootkey to HKCU, and retrying
Compiler not installed!
Error!
Press any key to continue . . .
Resetting registry rootkey to HKCU, and retrying
Compiler not installed!
Error!
Press any key to continue . . .
Resetting registry rootkey to HKCU, and retrying
Compiler not installed!
Error!
Press any key to continue . . .
Resetting registry rootkey to HKCU, and retrying
Compiler not installed!
Error!
Press any key to continue . . .
Resetting registry rootkey to HKCU, and retrying
Compiler not installed!
Error!
Press any key to continue . . .
Resetting registry rootkey to HKCU, and retrying
Compiler not installed!
Error!
Press any key to continue . . .
Resetting registry rootkey to HKCU, and retrying
Compiler not installed!
Error!
Press any key to continue . . .
Resetting registry rootkey to HKCU, and retrying
Compiler not installed!
Error!
Press any key to continue . . .
Resetting registry rootkey to HKCU, and retrying
Compiler not installed!
Error!
Press any key to continue . . .
Resetting registry rootkey to HKCU, and retrying
Compiler not installed!
Error!
Press any key to continue . . .
Resetting registry rootkey to HKCU, and retrying
Compiler not installed!
Error!
Press any key to continue . . .
Microsoft (R) Build Engine Version 3.5.30729.8931
[Microsoft .NET Framework, Version 2.0.50727.8940]
Copyright (C) Microsoft Corporation 2007. All rights reserved.
Build started 2019/04/30 20:25:34.
Project "C:\Indy10\trunk\C21\IndySystem210.dproj" on node 0 (Rebuild target(s)).
Deleting file "IndySystem210.res".
CreateProjectDirectories:
Creating directory "..\Output\HPP\Win32\Release\".
Creating directory "..\Output\OBJ\Win32\Release\".
Creating directory "..\Output\BPI\Win32\Release\".
BuildVersionResource:
CodeGear Resource Compiler/Binder
Version 1.2.2 Copyright (c) 2008-2012 Embarcadero Technologies Inc.
Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0
Copyright (C) Microsoft Corporation. All rights reserved.
Deleting file "IndySystem210.vrc".
_PasCoreCompile:
Embarcadero Delphi for Win32 compiler version 28.0
Copyright (c) 1983,2014 Embarcadero Technologies, Inc.
57928 lines, 0.81 seconds, 214204 bytes code, 2028 bytes data.
Done Building Project "C:\Indy10\trunk\C21\IndySystem210.dproj" (Rebuild target(s)).
Build succeeded.
0 Warning(s)
0 Error(s)
Time Elapsed 00:00:01.39
Microsoft (R) Build Engine Version 3.5.30729.8931
[Microsoft .NET Framework, Version 2.0.50727.8940]
Copyright (C) Microsoft Corporation 2007. All rights reserved.
Build started 2019/04/30 20:25:36.
Project "C:\Indy10\trunk\C21\IndyCore210.dproj" on node 0 (Rebuild target(s)).
Deleting file "IndyCore210.res".
BuildVersionResource:
CodeGear Resource Compiler/Binder
Version 1.2.2 Copyright (c) 2008-2012 Embarcadero Technologies Inc.
Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0
Copyright (C) Microsoft Corporation. All rights reserved.
Deleting file "IndyCore210.vrc".
_PasCoreCompile:
Embarcadero Delphi for Win32 compiler version 28.0
Copyright (c) 1983,2014 Embarcadero Technologies, Inc.
134243 lines, 1.67 seconds, 232624 bytes code, 996 bytes data.
Done Building Project "C:\Indy10\trunk\C21\IndyCore210.dproj" (Rebuild target(s)).
Build succeeded.
0 Warning(s)
0 Error(s)
Time Elapsed 00:00:02.04
Microsoft (R) Build Engine Version 3.5.30729.8931
[Microsoft .NET Framework, Version 2.0.50727.8940]
Copyright (C) Microsoft Corporation 2007. All rights reserved.
Build started 2019/04/30 20:25:40.
Project "C:\Indy10\trunk\C21\dclIndyCore210.dproj" on node 0 (Rebuild target(s)).
Deleting file "dclIndyCore210.res".
BuildVersionResource:
CodeGear Resource Compiler/Binder
Version 1.2.2 Copyright (c) 2008-2012 Embarcadero Technologies Inc.
Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0
Copyright (C) Microsoft Corporation. All rights reserved.
Deleting file "dclIndyCore210.vrc".
_PasCoreCompile:
Embarcadero Delphi for Win32 compiler version 28.0
Copyright (c) 1983,2014 Embarcadero Technologies, Inc.
13784 lines, 0.56 seconds, 30164 bytes code, 348 bytes data.
Done Building Project "C:\Indy10\trunk\C21\dclIndyCore210.dproj" (Rebuild target(s)).
Build succeeded.
0 Warning(s)
0 Error(s)
Time Elapsed 00:00:01.63
Microsoft (R) Build Engine Version 3.5.30729.8931
[Microsoft .NET Framework, Version 2.0.50727.8940]
Copyright (C) Microsoft Corporation 2007. All rights reserved.
Build started 2019/04/30 20:25:44.
Project "C:\Indy10\trunk\C21\IndyProtocols210.dproj" on node 0 (Rebuild target(s)).
Deleting file "IndyProtocols210.res".
BuildVersionResource:
CodeGear Resource Compiler/Binder
Version 1.2.2 Copyright (c) 2008-2012 Embarcadero Technologies Inc.
Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0
Copyright (C) Microsoft Corporation. All rights reserved.
Deleting file "IndyProtocols210.vrc".
_PasCoreCompile:
Embarcadero Delphi for Win32 compiler version 28.0
Copyright (c) 1983,2014 Embarcadero Technologies, Inc.
IdDNSServer.pas(1939): warning W1000: Symbol 'FillResultWithOutCheckId' is deprecated: 'Use FillResult() with checkID=F
alse'
IdDNSServer.pas(3891): warning W1000: Symbol 'FillResultWithOutCheckId' is deprecated: 'Use FillResult() with checkID=F
alse'
609515 lines, 9.36 seconds, 1821008 bytes code, 48028 bytes data.
Done Building Project "C:\Indy10\trunk\C21\IndyProtocols210.dproj" (Rebuild target(s)).
Build succeeded.
"C:\Indy10\trunk\C21\IndyProtocols210.dproj" (Rebuild target) (1) ->
(_PasCoreCompile target) ->
IdDNSServer.pas(1939): warning W1000: Symbol 'FillResultWithOutCheckId' is deprecated: 'Use FillResult() with checkID
=False'
IdDNSServer.pas(3891): warning W1000: Symbol 'FillResultWithOutCheckId' is deprecated: 'Use FillResult() with checkID
=False'
2 Warning(s)
0 Error(s)
Time Elapsed 00:00:10.54
Microsoft (R) Build Engine Version 3.5.30729.8931
[Microsoft .NET Framework, Version 2.0.50727.8940]
Copyright (C) Microsoft Corporation 2007. All rights reserved.
Build started 2019/04/30 20:25:55.
Project "C:\Indy10\trunk\C21\dclIndyProtocols210.dproj" on node 0 (Rebuild target(s)).
Deleting file "dclIndyProtocols210.res".
BuildVersionResource:
CodeGear Resource Compiler/Binder
Version 1.2.2 Copyright (c) 2008-2012 Embarcadero Technologies Inc.
Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0
Copyright (C) Microsoft Corporation. All rights reserved.
Deleting file "dclIndyProtocols210.vrc".
_PasCoreCompile:
Embarcadero Delphi for Win32 compiler version 28.0
Copyright (c) 1983,2014 Embarcadero Technologies, Inc.
22969 lines, 0.75 seconds, 18688 bytes code, 268 bytes data.
Done Building Project "C:\Indy10\trunk\C21\dclIndyProtocols210.dproj" (Rebuild target(s)).
Build succeeded.
0 Warning(s)
0 Error(s)
Time Elapsed 00:00:01.53
..\Output\hpp\Win32\Release\IdAllAuthentications.hpp
..\Output\hpp\Win32\Release\IdAllFTPListParsers.hpp
..\Output\hpp\Win32\Release\IdAllHeaderCoders.hpp
..\Output\hpp\Win32\Release\IdAntiFreezeBase.hpp
..\Output\hpp\Win32\Release\IdASN1Util.hpp
..\Output\hpp\Win32\Release\IdAssignedNumbers.hpp
..\Output\hpp\Win32\Release\IdAttachment.hpp
..\Output\hpp\Win32\Release\IdAttachmentFile.hpp
..\Output\hpp\Win32\Release\IdAttachmentMemory.hpp
..\Output\hpp\Win32\Release\IdAuthentication.hpp
..\Output\hpp\Win32\Release\IdAuthenticationDigest.hpp
..\Output\hpp\Win32\Release\IdAuthenticationManager.hpp
..\Output\hpp\Win32\Release\IdAuthenticationNTLM.hpp
..\Output\hpp\Win32\Release\IdAuthenticationSSPI.hpp
..\Output\hpp\Win32\Release\IdBaseComponent.hpp
..\Output\hpp\Win32\Release\IdBlockCipherIntercept.hpp
..\Output\hpp\Win32\Release\IdBuffer.hpp
..\Output\hpp\Win32\Release\IdChargenServer.hpp
..\Output\hpp\Win32\Release\IdChargenUDPServer.hpp
..\Output\hpp\Win32\Release\IdCharsets.hpp
..\Output\hpp\Win32\Release\IdCmdTCPClient.hpp
..\Output\hpp\Win32\Release\IdCmdTCPServer.hpp
..\Output\hpp\Win32\Release\IdCoder.hpp
..\Output\hpp\Win32\Release\IdCoder00E.hpp
..\Output\hpp\Win32\Release\IdCoder3to4.hpp
..\Output\hpp\Win32\Release\IdCoderBinHex4.hpp
..\Output\hpp\Win32\Release\IdCoderHeader.hpp
..\Output\hpp\Win32\Release\IdCoderMIME.hpp
..\Output\hpp\Win32\Release\IdCoderQuotedPrintable.hpp
..\Output\hpp\Win32\Release\IdCoderUUE.hpp
..\Output\hpp\Win32\Release\IdCoderXXE.hpp
..\Output\hpp\Win32\Release\IdCommandHandlers.hpp
..\Output\hpp\Win32\Release\IdComponent.hpp
..\Output\hpp\Win32\Release\IdCompressionIntercept.hpp
..\Output\hpp\Win32\Release\IdCompressorZLib.hpp
..\Output\hpp\Win32\Release\IdConnectThroughHttpProxy.hpp
..\Output\hpp\Win32\Release\IdContainers.hpp
..\Output\hpp\Win32\Release\IdContext.hpp
..\Output\hpp\Win32\Release\IdCookie.hpp
..\Output\hpp\Win32\Release\IdCookieManager.hpp
..\Output\hpp\Win32\Release\IdCTypes.hpp
..\Output\hpp\Win32\Release\IdCustomHTTPServer.hpp
..\Output\hpp\Win32\Release\IdCustomTCPServer.hpp
..\Output\hpp\Win32\Release\IdCustomTransparentProxy.hpp
..\Output\hpp\Win32\Release\IdDateTimeStamp.hpp
..\Output\hpp\Win32\Release\IdDayTime.hpp
..\Output\hpp\Win32\Release\IdDayTimeServer.hpp
..\Output\hpp\Win32\Release\IdDayTimeUDP.hpp
..\Output\hpp\Win32\Release\IdDayTimeUDPServer.hpp
..\Output\hpp\Win32\Release\IdDICT.hpp
..\Output\hpp\Win32\Release\IdDICTCommon.hpp
..\Output\hpp\Win32\Release\IdDICTServer.hpp
..\Output\hpp\Win32\Release\IdDiscardServer.hpp
..\Output\hpp\Win32\Release\IdDiscardUDPServer.hpp
..\Output\hpp\Win32\Release\IdDNSCommon.hpp
..\Output\hpp\Win32\Release\IdDNSResolver.hpp
..\Output\hpp\Win32\Release\IdDNSServer.hpp
..\Output\hpp\Win32\Release\IdEcho.hpp
..\Output\hpp\Win32\Release\IdEchoServer.hpp
..\Output\hpp\Win32\Release\IdEchoUDP.hpp
..\Output\hpp\Win32\Release\IdEchoUDPServer.hpp
..\Output\hpp\Win32\Release\IdEMailAddress.hpp
..\Output\hpp\Win32\Release\IdException.hpp
..\Output\hpp\Win32\Release\IdExceptionCore.hpp
..\Output\hpp\Win32\Release\IdExplicitTLSClientServerBase.hpp
..\Output\hpp\Win32\Release\IdFinger.hpp
..\Output\hpp\Win32\Release\IdFingerServer.hpp
..\Output\hpp\Win32\Release\IdFIPS.hpp
..\Output\hpp\Win32\Release\IdFSP.hpp
..\Output\hpp\Win32\Release\IdFTP.hpp
..\Output\hpp\Win32\Release\IdFTPBaseFileSystem.hpp
..\Output\hpp\Win32\Release\IdFTPCommon.hpp
..\Output\hpp\Win32\Release\IdFTPList.hpp
..\Output\hpp\Win32\Release\IdFTPListOutput.hpp
..\Output\hpp\Win32\Release\IdFTPListParseAS400.hpp
..\Output\hpp\Win32\Release\IdFTPListParseBase.hpp
..\Output\hpp\Win32\Release\IdFTPListParseBullGCOS7.hpp
..\Output\hpp\Win32\Release\IdFTPListParseBullGCOS8.hpp
..\Output\hpp\Win32\Release\IdFTPListParseChameleonNewt.hpp
..\Output\hpp\Win32\Release\IdFTPListParseCiscoIOS.hpp
..\Output\hpp\Win32\Release\IdFTPListParseDistinctTCPIP.hpp
..\Output\hpp\Win32\Release\IdFTPListParseEPLF.hpp
..\Output\hpp\Win32\Release\IdFTPListParseHellSoft.hpp
..\Output\hpp\Win32\Release\IdFTPListParseIEFTPGateway.hpp
..\Output\hpp\Win32\Release\IdFTPListParseKA9Q.hpp
..\Output\hpp\Win32\Release\IdFTPListParseMicrowareOS9.hpp
..\Output\hpp\Win32\Release\IdFTPListParseMPEiX.hpp
..\Output\hpp\Win32\Release\IdFTPListParseMusic.hpp
..\Output\hpp\Win32\Release\IdFTPListParseMVS.hpp
..\Output\hpp\Win32\Release\IdFTPListParseNCSAForDOS.hpp
..\Output\hpp\Win32\Release\IdFTPListParseNCSAForMACOS.hpp
..\Output\hpp\Win32\Release\IdFTPListParseNovellNetware.hpp
..\Output\hpp\Win32\Release\IdFTPListParseNovellNetwarePSU.hpp
..\Output\hpp\Win32\Release\IdFTPListParseOS2.hpp
..\Output\hpp\Win32\Release\IdFTPListParsePCNFSD.hpp
..\Output\hpp\Win32\Release\IdFTPListParsePCTCP.hpp
..\Output\hpp\Win32\Release\IdFTPListParseStercomOS390Exp.hpp
..\Output\hpp\Win32\Release\IdFTPListParseStercomUnixEnt.hpp
..\Output\hpp\Win32\Release\IdFTPListParseStratusVOS.hpp
..\Output\hpp\Win32\Release\IdFTPListParseSuperTCP.hpp
..\Output\hpp\Win32\Release\IdFTPListParseTandemGuardian.hpp
..\Output\hpp\Win32\Release\IdFTPListParseTOPS20.hpp
..\Output\hpp\Win32\Release\IdFTPListParseTSXPlus.hpp
..\Output\hpp\Win32\Release\IdFTPListParseUnisysClearPath.hpp
..\Output\hpp\Win32\Release\IdFTPListParseUnix.hpp
..\Output\hpp\Win32\Release\IdFTPListParseVM.hpp
..\Output\hpp\Win32\Release\IdFTPListParseVMS.hpp
..\Output\hpp\Win32\Release\IdFTPListParseVSE.hpp
..\Output\hpp\Win32\Release\IdFTPListParseVxWorks.hpp
..\Output\hpp\Win32\Release\IdFTPListParseWfFTP.hpp
..\Output\hpp\Win32\Release\IdFTPListParseWindowsNT.hpp
..\Output\hpp\Win32\Release\IdFTPListParseWinQVTNET.hpp
..\Output\hpp\Win32\Release\IdFTPListParseXecomMicroRTOS.hpp
..\Output\hpp\Win32\Release\IdFTPListTypes.hpp
..\Output\hpp\Win32\Release\IdFTPServer.hpp
..\Output\hpp\Win32\Release\IdFTPServerContextBase.hpp
..\Output\hpp\Win32\Release\IdGlobal.hpp
..\Output\hpp\Win32\Release\IdGlobalCore.hpp
..\Output\hpp\Win32\Release\IdGlobalProtocols.hpp
..\Output\hpp\Win32\Release\IdGopher.hpp
..\Output\hpp\Win32\Release\IdGopherConsts.hpp
..\Output\hpp\Win32\Release\IdGopherServer.hpp
..\Output\hpp\Win32\Release\IdHash.hpp
..\Output\hpp\Win32\Release\IdHashCRC.hpp
..\Output\hpp\Win32\Release\IdHashElf.hpp
..\Output\hpp\Win32\Release\IdHashMessageDigest.hpp
..\Output\hpp\Win32\Release\IdHashSHA.hpp
..\Output\hpp\Win32\Release\IdHeaderCoder2022JP.hpp
..\Output\hpp\Win32\Release\IdHeaderCoderBase.hpp
..\Output\hpp\Win32\Release\IdHeaderCoderIndy.hpp
..\Output\hpp\Win32\Release\IdHeaderCoderPlain.hpp
..\Output\hpp\Win32\Release\IdHeaderList.hpp
..\Output\hpp\Win32\Release\IdHMAC.hpp
..\Output\hpp\Win32\Release\IdHMACMD5.hpp
..\Output\hpp\Win32\Release\IdHMACSHA1.hpp
..\Output\hpp\Win32\Release\IdHTTP.hpp
..\Output\hpp\Win32\Release\IdHTTPHeaderInfo.hpp
..\Output\hpp\Win32\Release\IdHTTPProxyServer.hpp
..\Output\hpp\Win32\Release\IdHTTPServer.hpp
..\Output\hpp\Win32\Release\IdIcmpClient.hpp
..\Output\hpp\Win32\Release\IdIdent.hpp
..\Output\hpp\Win32\Release\IdIdentServer.hpp
..\Output\hpp\Win32\Release\IdIDN.hpp
..\Output\hpp\Win32\Release\IdIMAP4.hpp
..\Output\hpp\Win32\Release\IdIMAP4Server.hpp
..\Output\hpp\Win32\Release\IdIntercept.hpp
..\Output\hpp\Win32\Release\IdInterceptSimLog.hpp
..\Output\hpp\Win32\Release\IdInterceptThrottler.hpp
..\Output\hpp\Win32\Release\IdIOHandler.hpp
..\Output\hpp\Win32\Release\IdIOHandlerSocket.hpp
..\Output\hpp\Win32\Release\IdIOHandlerStack.hpp
..\Output\hpp\Win32\Release\IdIOHandlerStream.hpp
..\Output\hpp\Win32\Release\IdIPAddress.hpp
..\Output\hpp\Win32\Release\IdIPAddrMon.hpp
..\Output\hpp\Win32\Release\IdIPMCastBase.hpp
..\Output\hpp\Win32\Release\IdIPMCastClient.hpp
..\Output\hpp\Win32\Release\IdIPMCastServer.hpp
..\Output\hpp\Win32\Release\IdIPWatch.hpp
..\Output\hpp\Win32\Release\IdIRC.hpp
..\Output\hpp\Win32\Release\IdIrcServer.hpp
..\Output\hpp\Win32\Release\IdLogBase.hpp
..\Output\hpp\Win32\Release\IdLogDebug.hpp
..\Output\hpp\Win32\Release\IdLogEvent.hpp
..\Output\hpp\Win32\Release\IdLogFile.hpp
..\Output\hpp\Win32\Release\IdLogStream.hpp
..\Output\hpp\Win32\Release\IdLPR.hpp
..\Output\hpp\Win32\Release\IdMailBox.hpp
..\Output\hpp\Win32\Release\IdMappedFTP.hpp
..\Output\hpp\Win32\Release\IdMappedPOP3.hpp
..\Output\hpp\Win32\Release\IdMappedPortTCP.hpp
..\Output\hpp\Win32\Release\IdMappedPortUDP.hpp
..\Output\hpp\Win32\Release\IdMappedTelnet.hpp
..\Output\hpp\Win32\Release\IdMessage.hpp
..\Output\hpp\Win32\Release\IdMessageBuilder.hpp
..\Output\hpp\Win32\Release\IdMessageClient.hpp
..\Output\hpp\Win32\Release\IdMessageCoder.hpp
..\Output\hpp\Win32\Release\IdMessageCoderBinHex4.hpp
..\Output\hpp\Win32\Release\IdMessageCoderMIME.hpp
..\Output\hpp\Win32\Release\IdMessageCoderQuotedPrintable.hpp
..\Output\hpp\Win32\Release\IdMessageCoderUUE.hpp
..\Output\hpp\Win32\Release\IdMessageCoderXXE.hpp
..\Output\hpp\Win32\Release\IdMessageCoderYenc.hpp
..\Output\hpp\Win32\Release\IdMessageCollection.hpp
..\Output\hpp\Win32\Release\IdMessageHelper.hpp
..\Output\hpp\Win32\Release\IdMessageParts.hpp
..\Output\hpp\Win32\Release\IdMultipartFormData.hpp
..\Output\hpp\Win32\Release\IdNetworkCalculator.hpp
..\Output\hpp\Win32\Release\IdNNTP.hpp
..\Output\hpp\Win32\Release\IdNNTPServer.hpp
..\Output\hpp\Win32\Release\IdNTLM.hpp
..\Output\hpp\Win32\Release\IdOSFileName.hpp
..\Output\hpp\Win32\Release\IdOTPCalculator.hpp
..\Output\hpp\Win32\Release\IdPOP3.hpp
..\Output\hpp\Win32\Release\IdPOP3Server.hpp
..\Output\hpp\Win32\Release\IdQotd.hpp
..\Output\hpp\Win32\Release\IdQotdServer.hpp
..\Output\hpp\Win32\Release\IdQOTDUDP.hpp
..\Output\hpp\Win32\Release\IdQOTDUDPServer.hpp
..\Output\hpp\Win32\Release\IdRawBase.hpp
..\Output\hpp\Win32\Release\IdRawClient.hpp
..\Output\hpp\Win32\Release\IdRawFunctions.hpp
..\Output\hpp\Win32\Release\IdRawHeaders.hpp
..\Output\hpp\Win32\Release\IdRemoteCMDClient.hpp
..\Output\hpp\Win32\Release\IdRemoteCMDServer.hpp
..\Output\hpp\Win32\Release\IdReply.hpp
..\Output\hpp\Win32\Release\IdReplyFTP.hpp
..\Output\hpp\Win32\Release\IdReplyIMAP4.hpp
..\Output\hpp\Win32\Release\IdReplyPOP3.hpp
..\Output\hpp\Win32\Release\IdReplyRFC.hpp
..\Output\hpp\Win32\Release\IdReplySMTP.hpp
..\Output\hpp\Win32\Release\IdResourceStrings.hpp
..\Output\hpp\Win32\Release\IdResourceStringsCore.hpp
..\Output\hpp\Win32\Release\IdResourceStringsOpenSSL.hpp
..\Output\hpp\Win32\Release\IdResourceStringsProtocols.hpp
..\Output\hpp\Win32\Release\IdResourceStringsSSPI.hpp
..\Output\hpp\Win32\Release\IdResourceStringsUriUtils.hpp
..\Output\hpp\Win32\Release\IdRexec.hpp
..\Output\hpp\Win32\Release\IdRexecServer.hpp
..\Output\hpp\Win32\Release\IdRSH.hpp
..\Output\hpp\Win32\Release\IdRSHServer.hpp
..\Output\hpp\Win32\Release\IdSASL.hpp
..\Output\hpp\Win32\Release\IdSASLAnonymous.hpp
..\Output\hpp\Win32\Release\IdSASLCollection.hpp
..\Output\hpp\Win32\Release\IdSASLDigest.hpp
..\Output\hpp\Win32\Release\IdSASLExternal.hpp
..\Output\hpp\Win32\Release\IdSASLLogin.hpp
..\Output\hpp\Win32\Release\IdSASLOTP.hpp
..\Output\hpp\Win32\Release\IdSASLPlain.hpp
..\Output\hpp\Win32\Release\IdSASLSKey.hpp
..\Output\hpp\Win32\Release\IdSASLUserPass.hpp
..\Output\hpp\Win32\Release\IdSASL_CRAMBase.hpp
..\Output\hpp\Win32\Release\IdSASL_CRAM_MD5.hpp
..\Output\hpp\Win32\Release\IdSASL_CRAM_SHA1.hpp
..\Output\hpp\Win32\Release\IdScheduler.hpp
..\Output\hpp\Win32\Release\IdSchedulerOfThread.hpp
..\Output\hpp\Win32\Release\IdSchedulerOfThreadDefault.hpp
..\Output\hpp\Win32\Release\IdSchedulerOfThreadPool.hpp
..\Output\hpp\Win32\Release\IdServerInterceptLogBase.hpp
..\Output\hpp\Win32\Release\IdServerInterceptLogEvent.hpp
..\Output\hpp\Win32\Release\IdServerInterceptLogFile.hpp
..\Output\hpp\Win32\Release\IdServerIOHandler.hpp
..\Output\hpp\Win32\Release\IdServerIOHandlerSocket.hpp
..\Output\hpp\Win32\Release\IdServerIOHandlerStack.hpp
..\Output\hpp\Win32\Release\IdSimpleServer.hpp
..\Output\hpp\Win32\Release\IdSMTP.hpp
..\Output\hpp\Win32\Release\IdSMTPBase.hpp
..\Output\hpp\Win32\Release\IdSMTPRelay.hpp
..\Output\hpp\Win32\Release\IdSMTPServer.hpp
..\Output\hpp\Win32\Release\IdSNMP.hpp
..\Output\hpp\Win32\Release\IdSNPP.hpp
..\Output\hpp\Win32\Release\IdSNTP.hpp
..\Output\hpp\Win32\Release\IdSocketHandle.hpp
..\Output\hpp\Win32\Release\IdSocks.hpp
..\Output\hpp\Win32\Release\IdSocksServer.hpp
..\Output\hpp\Win32\Release\IdSSL.hpp
..\Output\hpp\Win32\Release\IdSSLOpenSSL.hpp
..\Output\hpp\Win32\Release\IdSSLOpenSSLHeaders.hpp
..\Output\hpp\Win32\Release\IdSSPI.hpp
..\Output\hpp\Win32\Release\IdStack.hpp
..\Output\hpp\Win32\Release\IdStackBSDBase.hpp
..\Output\hpp\Win32\Release\IdStackConsts.hpp
..\Output\hpp\Win32\Release\IdStackWindows.hpp
..\Output\hpp\Win32\Release\IdStream.hpp
..\Output\hpp\Win32\Release\IdStreamVCL.hpp
..\Output\hpp\Win32\Release\IdStrings.hpp
..\Output\hpp\Win32\Release\IdStruct.hpp
..\Output\hpp\Win32\Release\IdSync.hpp
..\Output\hpp\Win32\Release\IdSysLog.hpp
..\Output\hpp\Win32\Release\IdSysLogMessage.hpp
..\Output\hpp\Win32\Release\IdSysLogServer.hpp
..\Output\hpp\Win32\Release\IdSystat.hpp
..\Output\hpp\Win32\Release\IdSystatServer.hpp
..\Output\hpp\Win32\Release\IdSystatUDP.hpp
..\Output\hpp\Win32\Release\IdSystatUDPServer.hpp
..\Output\hpp\Win32\Release\IdTask.hpp
..\Output\hpp\Win32\Release\IdTCPClient.hpp
..\Output\hpp\Win32\Release\IdTCPConnection.hpp
..\Output\hpp\Win32\Release\IdTCPServer.hpp
..\Output\hpp\Win32\Release\IdTCPStream.hpp
..\Output\hpp\Win32\Release\IdTelnet.hpp
..\Output\hpp\Win32\Release\IdTelnetServer.hpp
..\Output\hpp\Win32\Release\IdText.hpp
..\Output\hpp\Win32\Release\IdThread.hpp
..\Output\hpp\Win32\Release\IdThreadComponent.hpp
..\Output\hpp\Win32\Release\IdThreadSafe.hpp
..\Output\hpp\Win32\Release\IdTime.hpp
..\Output\hpp\Win32\Release\IdTimeServer.hpp
..\Output\hpp\Win32\Release\IdTimeUDP.hpp
..\Output\hpp\Win32\Release\IdTimeUDPServer.hpp
..\Output\hpp\Win32\Release\IdTraceRoute.hpp
..\Output\hpp\Win32\Release\IdTrivialFTP.hpp
..\Output\hpp\Win32\Release\IdTrivialFTPBase.hpp
..\Output\hpp\Win32\Release\IdTrivialFTPServer.hpp
..\Output\hpp\Win32\Release\IdUDPBase.hpp
..\Output\hpp\Win32\Release\IdUDPClient.hpp
..\Output\hpp\Win32\Release\IdUDPServer.hpp
..\Output\hpp\Win32\Release\IdUnixTime.hpp
..\Output\hpp\Win32\Release\IdUnixTimeServer.hpp
..\Output\hpp\Win32\Release\IdUnixTimeUDP.hpp
..\Output\hpp\Win32\Release\IdUnixTimeUDPServer.hpp
..\Output\hpp\Win32\Release\IdURI.hpp
..\Output\hpp\Win32\Release\IdUriUtils.hpp
..\Output\hpp\Win32\Release\IdUserAccounts.hpp
..\Output\hpp\Win32\Release\IdUserPassProvider.hpp
..\Output\hpp\Win32\Release\IdVCard.hpp
..\Output\hpp\Win32\Release\IdWebDAV.hpp
..\Output\hpp\Win32\Release\IdWhois.hpp
..\Output\hpp\Win32\Release\IdWhoIsServer.hpp
..\Output\hpp\Win32\Release\IdWinsock2.hpp
..\Output\hpp\Win32\Release\IdWship6.hpp
..\Output\hpp\Win32\Release\IdYarn.hpp
..\Output\hpp\Win32\Release\IdZLib.hpp
..\Output\hpp\Win32\Release\IdZLibCompressorBase.hpp
..\Output\hpp\Win32\Release\IdZLibConst.hpp
..\Output\hpp\Win32\Release\IdZLibHeaders.hpp
315 file(s) copied.
C:\Users\Public\Documents\Embarcadero\Studio\15.0\Bpl\*Indy*.bpl
The system cannot find the file specified.
0 file(s) copied.
..\Output\Bpi\Win32\Release\IndyCore210.bpi
..\Output\Bpi\Win32\Release\IndyProtocols210.bpi
..\Output\Bpi\Win32\Release\IndySystem210.bpi
3 file(s) copied.
..\Output\Obj\Win32\Release\IndyCore210.lib
..\Output\Obj\Win32\Release\IndyProtocols210.lib
..\Output\Obj\Win32\Release\IndySystem210.lib
3 file(s) copied.
1 file(s) copied.
1 file(s) copied.
1 file(s) copied.
Could Not Find C:\Users\Public\Documents\Embarcadero\Studio\15.0\Bpl\*Indy*.bpl
The system cannot find the file specified.
Resetting registry rootkey to HKCU, and retrying
Compiler not installed!
Error!
Press any key to continue . . .
Resetting registry rootkey to HKCU, and retrying
Compiler not installed!
Error!
Press any key to continue . . .
Resetting registry rootkey to HKCU, and retrying
Compiler not installed!
Error!
Press any key to continue . . .
Microsoft (R) Build Engine Version 3.5.30729.8931
[Microsoft .NET Framework, Version 2.0.50727.8940]
Copyright (C) Microsoft Corporation 2007. All rights reserved.
Build started 2019/04/30 20:26:15.
Project "C:\Indy10\trunk\C25\IndySystem250.dproj" on node 0 (Rebuild target(s)).
Deleting file "IndySystem250.res".
CreateProjectDirectories:
Creating directory "..\Output\HPP\Win32\Release\".
Creating directory "..\Output\OBJ\Win32\Release\".
Creating directory "..\Output\BPI\Win32\Release\".
BuildVersionResource:
CodeGear Resource Compiler/Binder
Version 1.2.2 Copyright (c) 2008-2012 Embarcadero Technologies Inc.
Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0
Copyright (C) Microsoft Corporation. All rights reserved.
Deleting file "IndySystem250.vrc".
_PasCoreCompile:
Embarcadero Delphi for Win32 compiler version 32.0
Copyright (c) 1983,2017 Embarcadero Technologies, Inc.
IdGlobal.pas(9355): warning W1002: Symbol 'RegisterExpectedMemoryLeak' is specific to a platform
IdStackWindows.pas(1755): Hint warning H2077: Value assigned to 'TIdSocketListWindows.GetItem' never used
57922 lines, 1.14 seconds, 203864 bytes code, 2040 bytes data.
Done Building Project "C:\Indy10\trunk\C25\IndySystem250.dproj" (Rebuild target(s)).
Build succeeded.
"C:\Indy10\trunk\C25\IndySystem250.dproj" (Rebuild target) (1) ->
(_PasCoreCompile target) ->
IdGlobal.pas(9355): warning W1002: Symbol 'RegisterExpectedMemoryLeak' is specific to a platform
IdStackWindows.pas(1755): Hint warning H2077: Value assigned to 'TIdSocketListWindows.GetItem' never used
2 Warning(s)
0 Error(s)
Time Elapsed 00:00:02.92
Microsoft (R) Build Engine Version 3.5.30729.8931
[Microsoft .NET Framework, Version 2.0.50727.8940]
Copyright (C) Microsoft Corporation 2007. All rights reserved.
Build started 2019/04/30 20:26:19.
Project "C:\Indy10\trunk\C25\IndyCore250.dproj" on node 0 (Rebuild target(s)).
Deleting file "IndyCore250.res".
BuildVersionResource:
CodeGear Resource Compiler/Binder
Version 1.2.2 Copyright (c) 2008-2012 Embarcadero Technologies Inc.
Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0
Copyright (C) Microsoft Corporation. All rights reserved.
Deleting file "IndyCore250.vrc".
_PasCoreCompile:
Embarcadero Delphi for Win32 compiler version 32.0
Copyright (c) 1983,2017 Embarcadero Technologies, Inc.
IdIOHandler.pas(2599): Hint warning H2077: Value assigned to 'TIdIOHandler.WriteFile' never used
IdIcmpClient.pas(403): Hint warning H2077: Value assigned to 'TIdCustomIcmpClient.DecodeIPv4Packet' never used
134232 lines, 1.59 seconds, 232188 bytes code, 1004 bytes data.
Done Building Project "C:\Indy10\trunk\C25\IndyCore250.dproj" (Rebuild target(s)).
Build succeeded.
"C:\Indy10\trunk\C25\IndyCore250.dproj" (Rebuild target) (1) ->
(_PasCoreCompile target) ->
IdIOHandler.pas(2599): Hint warning H2077: Value assigned to 'TIdIOHandler.WriteFile' never used
IdIcmpClient.pas(403): Hint warning H2077: Value assigned to 'TIdCustomIcmpClient.DecodeIPv4Packet' never used
2 Warning(s)
0 Error(s)
Time Elapsed 00:00:03.01
Microsoft (R) Build Engine Version 3.5.30729.8931
[Microsoft .NET Framework, Version 2.0.50727.8940]
Copyright (C) Microsoft Corporation 2007. All rights reserved.
Build started 2019/04/30 20:26:22.
Project "C:\Indy10\trunk\C25\dclIndyCore250.dproj" on node 0 (Rebuild target(s)).
Deleting file "dclIndyCore250.res".
BuildVersionResource:
CodeGear Resource Compiler/Binder
Version 1.2.2 Copyright (c) 2008-2012 Embarcadero Technologies Inc.
Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0
Copyright (C) Microsoft Corporation. All rights reserved.
Deleting file "dclIndyCore250.vrc".
_PasCoreCompile:
Embarcadero Delphi for Win32 compiler version 32.0
Copyright (c) 1983,2017 Embarcadero Technologies, Inc.
13784 lines, 0.59 seconds, 31908 bytes code, 368 bytes data.
Done Building Project "C:\Indy10\trunk\C25\dclIndyCore250.dproj" (Rebuild target(s)).
Build succeeded.
0 Warning(s)
0 Error(s)
Time Elapsed 00:00:01.68
Microsoft (R) Build Engine Version 3.5.30729.8931
[Microsoft .NET Framework, Version 2.0.50727.8940]
Copyright (C) Microsoft Corporation 2007. All rights reserved.
Build started 2019/04/30 20:26:26.
Project "C:\Indy10\trunk\C25\IndyProtocols250.dproj" on node 0 (Rebuild target(s)).
Deleting file "IndyProtocols250.res".
BuildVersionResource:
CodeGear Resource Compiler/Binder
Version 1.2.2 Copyright (c) 2008-2012 Embarcadero Technologies Inc.
Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0
Copyright (C) Microsoft Corporation. All rights reserved.
Deleting file "IndyProtocols250.vrc".
_PasCoreCompile:
Embarcadero Delphi for Win32 compiler version 32.0
Copyright (c) 1983,2017 Embarcadero Technologies, Inc.
IdAuthenticationSSPI.pas(1058): Hint warning H2077: Value assigned to 'TCustomSSPIConnectionContext.UpdateAndGenerateRe
ply' never used
IdFTPListParseBase.pas(339): Hint warning H2077: Value assigned to 'TIdFTPRegParseList.CheckListParseCapa' never used
IdFTPListParseTOPS20.pas(140): Hint warning H2077: Value assigned to 'TIdFTPLPTOPS20.CheckListing' never used
IdCustomHTTPServer.pas(1279): Hint warning H2077: Value assigned to 'LCloseConnection' never used
IdDNSServer.pas(1939): warning W1000: Symbol 'FillResultWithOutCheckId' is deprecated: 'Use FillResult() with checkID=F
alse'
IdDNSServer.pas(3891): warning W1000: Symbol 'FillResultWithOutCheckId' is deprecated: 'Use FillResult() with checkID=F
alse'
609515 lines, 7.72 seconds, 1785300 bytes code, 48040 bytes data.
Done Building Project "C:\Indy10\trunk\C25\IndyProtocols250.dproj" (Rebuild target(s)).
Build succeeded.
"C:\Indy10\trunk\C25\IndyProtocols250.dproj" (Rebuild target) (1) ->
(_PasCoreCompile target) ->
IdAuthenticationSSPI.pas(1058): Hint warning H2077: Value assigned to 'TCustomSSPIConnectionContext.UpdateAndGenerate
Reply' never used
IdFTPListParseBase.pas(339): Hint warning H2077: Value assigned to 'TIdFTPRegParseList.CheckListParseCapa' never used
IdFTPListParseTOPS20.pas(140): Hint warning H2077: Value assigned to 'TIdFTPLPTOPS20.CheckListing' never used
IdCustomHTTPServer.pas(1279): Hint warning H2077: Value assigned to 'LCloseConnection' never used
IdDNSServer.pas(1939): warning W1000: Symbol 'FillResultWithOutCheckId' is deprecated: 'Use FillResult() with checkID
=False'
IdDNSServer.pas(3891): warning W1000: Symbol 'FillResultWithOutCheckId' is deprecated: 'Use FillResult() with checkID
=False'
6 Warning(s)
0 Error(s)
Time Elapsed 00:00:11.69
Microsoft (R) Build Engine Version 3.5.30729.8931
[Microsoft .NET Framework, Version 2.0.50727.8940]
Copyright (C) Microsoft Corporation 2007. All rights reserved.
Build started 2019/04/30 20:26:38.
Project "C:\Indy10\trunk\C25\dclIndyProtocols250.dproj" on node 0 (Rebuild target(s)).
Deleting file "dclIndyProtocols250.res".
BuildVersionResource:
CodeGear Resource Compiler/Binder
Version 1.2.2 Copyright (c) 2008-2012 Embarcadero Technologies Inc.
Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0
Copyright (C) Microsoft Corporation. All rights reserved.
Deleting file "dclIndyProtocols250.vrc".
_PasCoreCompile:
Embarcadero Delphi for Win32 compiler version 32.0
Copyright (c) 1983,2017 Embarcadero Technologies, Inc.
22969 lines, 0.84 seconds, 20740 bytes code, 288 bytes data.
Done Building Project "C:\Indy10\trunk\C25\dclIndyProtocols250.dproj" (Rebuild target(s)).
Build succeeded.
0 Warning(s)
0 Error(s)
Time Elapsed 00:00:02.35
..\Output\hpp\Win32\Release\IdAllAuthentications.hpp
..\Output\hpp\Win32\Release\IdAllFTPListParsers.hpp
..\Output\hpp\Win32\Release\IdAllHeaderCoders.hpp
..\Output\hpp\Win32\Release\IdAntiFreezeBase.hpp
..\Output\hpp\Win32\Release\IdASN1Util.hpp
..\Output\hpp\Win32\Release\IdAssignedNumbers.hpp
..\Output\hpp\Win32\Release\IdAttachment.hpp
..\Output\hpp\Win32\Release\IdAttachmentFile.hpp
..\Output\hpp\Win32\Release\IdAttachmentMemory.hpp
..\Output\hpp\Win32\Release\IdAuthentication.hpp
..\Output\hpp\Win32\Release\IdAuthenticationDigest.hpp
..\Output\hpp\Win32\Release\IdAuthenticationManager.hpp
..\Output\hpp\Win32\Release\IdAuthenticationNTLM.hpp
..\Output\hpp\Win32\Release\IdAuthenticationSSPI.hpp
..\Output\hpp\Win32\Release\IdBaseComponent.hpp
..\Output\hpp\Win32\Release\IdBlockCipherIntercept.hpp
..\Output\hpp\Win32\Release\IdBuffer.hpp
..\Output\hpp\Win32\Release\IdChargenServer.hpp
..\Output\hpp\Win32\Release\IdChargenUDPServer.hpp
..\Output\hpp\Win32\Release\IdCharsets.hpp
..\Output\hpp\Win32\Release\IdCmdTCPClient.hpp
..\Output\hpp\Win32\Release\IdCmdTCPServer.hpp
..\Output\hpp\Win32\Release\IdCoder.hpp
..\Output\hpp\Win32\Release\IdCoder00E.hpp
..\Output\hpp\Win32\Release\IdCoder3to4.hpp
..\Output\hpp\Win32\Release\IdCoderBinHex4.hpp
..\Output\hpp\Win32\Release\IdCoderHeader.hpp
..\Output\hpp\Win32\Release\IdCoderMIME.hpp
..\Output\hpp\Win32\Release\IdCoderQuotedPrintable.hpp
..\Output\hpp\Win32\Release\IdCoderUUE.hpp
..\Output\hpp\Win32\Release\IdCoderXXE.hpp
..\Output\hpp\Win32\Release\IdCommandHandlers.hpp
..\Output\hpp\Win32\Release\IdComponent.hpp
..\Output\hpp\Win32\Release\IdCompressionIntercept.hpp
..\Output\hpp\Win32\Release\IdCompressorZLib.hpp
..\Output\hpp\Win32\Release\IdConnectThroughHttpProxy.hpp
..\Output\hpp\Win32\Release\IdContainers.hpp
..\Output\hpp\Win32\Release\IdContext.hpp
..\Output\hpp\Win32\Release\IdCookie.hpp
..\Output\hpp\Win32\Release\IdCookieManager.hpp
..\Output\hpp\Win32\Release\IdCTypes.hpp
..\Output\hpp\Win32\Release\IdCustomHTTPServer.hpp
..\Output\hpp\Win32\Release\IdCustomTCPServer.hpp
..\Output\hpp\Win32\Release\IdCustomTransparentProxy.hpp
..\Output\hpp\Win32\Release\IdDateTimeStamp.hpp
..\Output\hpp\Win32\Release\IdDayTime.hpp
..\Output\hpp\Win32\Release\IdDayTimeServer.hpp
..\Output\hpp\Win32\Release\IdDayTimeUDP.hpp
..\Output\hpp\Win32\Release\IdDayTimeUDPServer.hpp
..\Output\hpp\Win32\Release\IdDICT.hpp
..\Output\hpp\Win32\Release\IdDICTCommon.hpp
..\Output\hpp\Win32\Release\IdDICTServer.hpp
..\Output\hpp\Win32\Release\IdDiscardServer.hpp
..\Output\hpp\Win32\Release\IdDiscardUDPServer.hpp
..\Output\hpp\Win32\Release\IdDNSCommon.hpp
..\Output\hpp\Win32\Release\IdDNSResolver.hpp
..\Output\hpp\Win32\Release\IdDNSServer.hpp
..\Output\hpp\Win32\Release\IdEcho.hpp
..\Output\hpp\Win32\Release\IdEchoServer.hpp
..\Output\hpp\Win32\Release\IdEchoUDP.hpp
..\Output\hpp\Win32\Release\IdEchoUDPServer.hpp
..\Output\hpp\Win32\Release\IdEMailAddress.hpp
..\Output\hpp\Win32\Release\IdException.hpp
..\Output\hpp\Win32\Release\IdExceptionCore.hpp
..\Output\hpp\Win32\Release\IdExplicitTLSClientServerBase.hpp
..\Output\hpp\Win32\Release\IdFinger.hpp
..\Output\hpp\Win32\Release\IdFingerServer.hpp
..\Output\hpp\Win32\Release\IdFIPS.hpp
..\Output\hpp\Win32\Release\IdFSP.hpp
..\Output\hpp\Win32\Release\IdFTP.hpp
..\Output\hpp\Win32\Release\IdFTPBaseFileSystem.hpp
..\Output\hpp\Win32\Release\IdFTPCommon.hpp
..\Output\hpp\Win32\Release\IdFTPList.hpp
..\Output\hpp\Win32\Release\IdFTPListOutput.hpp
..\Output\hpp\Win32\Release\IdFTPListParseAS400.hpp
..\Output\hpp\Win32\Release\IdFTPListParseBase.hpp
..\Output\hpp\Win32\Release\IdFTPListParseBullGCOS7.hpp
..\Output\hpp\Win32\Release\IdFTPListParseBullGCOS8.hpp
..\Output\hpp\Win32\Release\IdFTPListParseChameleonNewt.hpp
..\Output\hpp\Win32\Release\IdFTPListParseCiscoIOS.hpp
..\Output\hpp\Win32\Release\IdFTPListParseDistinctTCPIP.hpp
..\Output\hpp\Win32\Release\IdFTPListParseEPLF.hpp
..\Output\hpp\Win32\Release\IdFTPListParseHellSoft.hpp
..\Output\hpp\Win32\Release\IdFTPListParseIEFTPGateway.hpp
..\Output\hpp\Win32\Release\IdFTPListParseKA9Q.hpp
..\Output\hpp\Win32\Release\IdFTPListParseMicrowareOS9.hpp
..\Output\hpp\Win32\Release\IdFTPListParseMPEiX.hpp
..\Output\hpp\Win32\Release\IdFTPListParseMusic.hpp
..\Output\hpp\Win32\Release\IdFTPListParseMVS.hpp
..\Output\hpp\Win32\Release\IdFTPListParseNCSAForDOS.hpp
..\Output\hpp\Win32\Release\IdFTPListParseNCSAForMACOS.hpp
..\Output\hpp\Win32\Release\IdFTPListParseNovellNetware.hpp
..\Output\hpp\Win32\Release\IdFTPListParseNovellNetwarePSU.hpp
..\Output\hpp\Win32\Release\IdFTPListParseOS2.hpp
..\Output\hpp\Win32\Release\IdFTPListParsePCNFSD.hpp
..\Output\hpp\Win32\Release\IdFTPListParsePCTCP.hpp
..\Output\hpp\Win32\Release\IdFTPListParseStercomOS390Exp.hpp
..\Output\hpp\Win32\Release\IdFTPListParseStercomUnixEnt.hpp
..\Output\hpp\Win32\Release\IdFTPListParseStratusVOS.hpp
..\Output\hpp\Win32\Release\IdFTPListParseSuperTCP.hpp
..\Output\hpp\Win32\Release\IdFTPListParseTandemGuardian.hpp
..\Output\hpp\Win32\Release\IdFTPListParseTOPS20.hpp
..\Output\hpp\Win32\Release\IdFTPListParseTSXPlus.hpp
..\Output\hpp\Win32\Release\IdFTPListParseUnisysClearPath.hpp
..\Output\hpp\Win32\Release\IdFTPListParseUnix.hpp
..\Output\hpp\Win32\Release\IdFTPListParseVM.hpp
..\Output\hpp\Win32\Release\IdFTPListParseVMS.hpp
..\Output\hpp\Win32\Release\IdFTPListParseVSE.hpp
..\Output\hpp\Win32\Release\IdFTPListParseVxWorks.hpp
..\Output\hpp\Win32\Release\IdFTPListParseWfFTP.hpp
..\Output\hpp\Win32\Release\IdFTPListParseWindowsNT.hpp
..\Output\hpp\Win32\Release\IdFTPListParseWinQVTNET.hpp
..\Output\hpp\Win32\Release\IdFTPListParseXecomMicroRTOS.hpp
..\Output\hpp\Win32\Release\IdFTPListTypes.hpp
..\Output\hpp\Win32\Release\IdFTPServer.hpp
..\Output\hpp\Win32\Release\IdFTPServerContextBase.hpp
..\Output\hpp\Win32\Release\IdGlobal.hpp
..\Output\hpp\Win32\Release\IdGlobalCore.hpp
..\Output\hpp\Win32\Release\IdGlobalProtocols.hpp
..\Output\hpp\Win32\Release\IdGopher.hpp
..\Output\hpp\Win32\Release\IdGopherConsts.hpp
..\Output\hpp\Win32\Release\IdGopherServer.hpp
..\Output\hpp\Win32\Release\IdHash.hpp
..\Output\hpp\Win32\Release\IdHashCRC.hpp
..\Output\hpp\Win32\Release\IdHashElf.hpp
..\Output\hpp\Win32\Release\IdHashMessageDigest.hpp
..\Output\hpp\Win32\Release\IdHashSHA.hpp
..\Output\hpp\Win32\Release\IdHeaderCoder2022JP.hpp
..\Output\hpp\Win32\Release\IdHeaderCoderBase.hpp
..\Output\hpp\Win32\Release\IdHeaderCoderIndy.hpp
..\Output\hpp\Win32\Release\IdHeaderCoderPlain.hpp
..\Output\hpp\Win32\Release\IdHeaderList.hpp
..\Output\hpp\Win32\Release\IdHMAC.hpp
..\Output\hpp\Win32\Release\IdHMACMD5.hpp
..\Output\hpp\Win32\Release\IdHMACSHA1.hpp
..\Output\hpp\Win32\Release\IdHTTP.hpp
..\Output\hpp\Win32\Release\IdHTTPHeaderInfo.hpp
..\Output\hpp\Win32\Release\IdHTTPProxyServer.hpp
..\Output\hpp\Win32\Release\IdHTTPServer.hpp
..\Output\hpp\Win32\Release\IdIcmpClient.hpp
..\Output\hpp\Win32\Release\IdIdent.hpp
..\Output\hpp\Win32\Release\IdIdentServer.hpp
..\Output\hpp\Win32\Release\IdIDN.hpp
..\Output\hpp\Win32\Release\IdIMAP4.hpp
..\Output\hpp\Win32\Release\IdIMAP4Server.hpp
..\Output\hpp\Win32\Release\IdIntercept.hpp
..\Output\hpp\Win32\Release\IdInterceptSimLog.hpp
..\Output\hpp\Win32\Release\IdInterceptThrottler.hpp
..\Output\hpp\Win32\Release\IdIOHandler.hpp
..\Output\hpp\Win32\Release\IdIOHandlerSocket.hpp
..\Output\hpp\Win32\Release\IdIOHandlerStack.hpp
..\Output\hpp\Win32\Release\IdIOHandlerStream.hpp
..\Output\hpp\Win32\Release\IdIPAddress.hpp
..\Output\hpp\Win32\Release\IdIPAddrMon.hpp
..\Output\hpp\Win32\Release\IdIPMCastBase.hpp
..\Output\hpp\Win32\Release\IdIPMCastClient.hpp
..\Output\hpp\Win32\Release\IdIPMCastServer.hpp
..\Output\hpp\Win32\Release\IdIPWatch.hpp
..\Output\hpp\Win32\Release\IdIRC.hpp
..\Output\hpp\Win32\Release\IdIrcServer.hpp
..\Output\hpp\Win32\Release\IdLogBase.hpp
..\Output\hpp\Win32\Release\IdLogDebug.hpp
..\Output\hpp\Win32\Release\IdLogEvent.hpp
..\Output\hpp\Win32\Release\IdLogFile.hpp
..\Output\hpp\Win32\Release\IdLogStream.hpp
..\Output\hpp\Win32\Release\IdLPR.hpp
..\Output\hpp\Win32\Release\IdMailBox.hpp
..\Output\hpp\Win32\Release\IdMappedFTP.hpp
..\Output\hpp\Win32\Release\IdMappedPOP3.hpp
..\Output\hpp\Win32\Release\IdMappedPortTCP.hpp
..\Output\hpp\Win32\Release\IdMappedPortUDP.hpp
..\Output\hpp\Win32\Release\IdMappedTelnet.hpp
..\Output\hpp\Win32\Release\IdMessage.hpp
..\Output\hpp\Win32\Release\IdMessageBuilder.hpp
..\Output\hpp\Win32\Release\IdMessageClient.hpp
..\Output\hpp\Win32\Release\IdMessageCoder.hpp
..\Output\hpp\Win32\Release\IdMessageCoderBinHex4.hpp
..\Output\hpp\Win32\Release\IdMessageCoderMIME.hpp
..\Output\hpp\Win32\Release\IdMessageCoderQuotedPrintable.hpp
..\Output\hpp\Win32\Release\IdMessageCoderUUE.hpp
..\Output\hpp\Win32\Release\IdMessageCoderXXE.hpp
..\Output\hpp\Win32\Release\IdMessageCoderYenc.hpp
..\Output\hpp\Win32\Release\IdMessageCollection.hpp
..\Output\hpp\Win32\Release\IdMessageHelper.hpp
..\Output\hpp\Win32\Release\IdMessageParts.hpp
..\Output\hpp\Win32\Release\IdMultipartFormData.hpp
..\Output\hpp\Win32\Release\IdNetworkCalculator.hpp
..\Output\hpp\Win32\Release\IdNNTP.hpp
..\Output\hpp\Win32\Release\IdNNTPServer.hpp
..\Output\hpp\Win32\Release\IdNTLM.hpp
..\Output\hpp\Win32\Release\IdOSFileName.hpp
..\Output\hpp\Win32\Release\IdOTPCalculator.hpp
..\Output\hpp\Win32\Release\IdPOP3.hpp
..\Output\hpp\Win32\Release\IdPOP3Server.hpp
..\Output\hpp\Win32\Release\IdQotd.hpp
..\Output\hpp\Win32\Release\IdQotdServer.hpp
..\Output\hpp\Win32\Release\IdQOTDUDP.hpp
..\Output\hpp\Win32\Release\IdQOTDUDPServer.hpp
..\Output\hpp\Win32\Release\IdRawBase.hpp
..\Output\hpp\Win32\Release\IdRawClient.hpp
..\Output\hpp\Win32\Release\IdRawFunctions.hpp
..\Output\hpp\Win32\Release\IdRawHeaders.hpp
..\Output\hpp\Win32\Release\IdRemoteCMDClient.hpp
..\Output\hpp\Win32\Release\IdRemoteCMDServer.hpp
..\Output\hpp\Win32\Release\IdReply.hpp
..\Output\hpp\Win32\Release\IdReplyFTP.hpp
..\Output\hpp\Win32\Release\IdReplyIMAP4.hpp
..\Output\hpp\Win32\Release\IdReplyPOP3.hpp
..\Output\hpp\Win32\Release\IdReplyRFC.hpp
..\Output\hpp\Win32\Release\IdReplySMTP.hpp
..\Output\hpp\Win32\Release\IdResourceStrings.hpp
..\Output\hpp\Win32\Release\IdResourceStringsCore.hpp
..\Output\hpp\Win32\Release\IdResourceStringsOpenSSL.hpp
..\Output\hpp\Win32\Release\IdResourceStringsProtocols.hpp
..\Output\hpp\Win32\Release\IdResourceStringsSSPI.hpp
..\Output\hpp\Win32\Release\IdResourceStringsUriUtils.hpp
..\Output\hpp\Win32\Release\IdRexec.hpp
..\Output\hpp\Win32\Release\IdRexecServer.hpp
..\Output\hpp\Win32\Release\IdRSH.hpp
..\Output\hpp\Win32\Release\IdRSHServer.hpp
..\Output\hpp\Win32\Release\IdSASL.hpp
..\Output\hpp\Win32\Release\IdSASLAnonymous.hpp
..\Output\hpp\Win32\Release\IdSASLCollection.hpp
..\Output\hpp\Win32\Release\IdSASLDigest.hpp
..\Output\hpp\Win32\Release\IdSASLExternal.hpp
..\Output\hpp\Win32\Release\IdSASLLogin.hpp
..\Output\hpp\Win32\Release\IdSASLOTP.hpp
..\Output\hpp\Win32\Release\IdSASLPlain.hpp
..\Output\hpp\Win32\Release\IdSASLSKey.hpp
..\Output\hpp\Win32\Release\IdSASLUserPass.hpp
..\Output\hpp\Win32\Release\IdSASL_CRAMBase.hpp
..\Output\hpp\Win32\Release\IdSASL_CRAM_MD5.hpp
..\Output\hpp\Win32\Release\IdSASL_CRAM_SHA1.hpp
..\Output\hpp\Win32\Release\IdScheduler.hpp
..\Output\hpp\Win32\Release\IdSchedulerOfThread.hpp
..\Output\hpp\Win32\Release\IdSchedulerOfThreadDefault.hpp
..\Output\hpp\Win32\Release\IdSchedulerOfThreadPool.hpp
..\Output\hpp\Win32\Release\IdServerInterceptLogBase.hpp
..\Output\hpp\Win32\Release\IdServerInterceptLogEvent.hpp
..\Output\hpp\Win32\Release\IdServerInterceptLogFile.hpp
..\Output\hpp\Win32\Release\IdServerIOHandler.hpp
..\Output\hpp\Win32\Release\IdServerIOHandlerSocket.hpp
..\Output\hpp\Win32\Release\IdServerIOHandlerStack.hpp
..\Output\hpp\Win32\Release\IdSimpleServer.hpp
..\Output\hpp\Win32\Release\IdSMTP.hpp
..\Output\hpp\Win32\Release\IdSMTPBase.hpp
..\Output\hpp\Win32\Release\IdSMTPRelay.hpp
..\Output\hpp\Win32\Release\IdSMTPServer.hpp
..\Output\hpp\Win32\Release\IdSNMP.hpp
..\Output\hpp\Win32\Release\IdSNPP.hpp
..\Output\hpp\Win32\Release\IdSNTP.hpp
..\Output\hpp\Win32\Release\IdSocketHandle.hpp
..\Output\hpp\Win32\Release\IdSocks.hpp
..\Output\hpp\Win32\Release\IdSocksServer.hpp
..\Output\hpp\Win32\Release\IdSSL.hpp
..\Output\hpp\Win32\Release\IdSSLOpenSSL.hpp
..\Output\hpp\Win32\Release\IdSSLOpenSSLHeaders.hpp
..\Output\hpp\Win32\Release\IdSSPI.hpp
..\Output\hpp\Win32\Release\IdStack.hpp
..\Output\hpp\Win32\Release\IdStackBSDBase.hpp
..\Output\hpp\Win32\Release\IdStackConsts.hpp
..\Output\hpp\Win32\Release\IdStackWindows.hpp
..\Output\hpp\Win32\Release\IdStream.hpp
..\Output\hpp\Win32\Release\IdStreamVCL.hpp
..\Output\hpp\Win32\Release\IdStrings.hpp
..\Output\hpp\Win32\Release\IdStruct.hpp
..\Output\hpp\Win32\Release\IdSync.hpp
..\Output\hpp\Win32\Release\IdSysLog.hpp
..\Output\hpp\Win32\Release\IdSysLogMessage.hpp
..\Output\hpp\Win32\Release\IdSysLogServer.hpp
..\Output\hpp\Win32\Release\IdSystat.hpp
..\Output\hpp\Win32\Release\IdSystatServer.hpp
..\Output\hpp\Win32\Release\IdSystatUDP.hpp
..\Output\hpp\Win32\Release\IdSystatUDPServer.hpp
..\Output\hpp\Win32\Release\IdTask.hpp
..\Output\hpp\Win32\Release\IdTCPClient.hpp
..\Output\hpp\Win32\Release\IdTCPConnection.hpp
..\Output\hpp\Win32\Release\IdTCPServer.hpp
..\Output\hpp\Win32\Release\IdTCPStream.hpp
..\Output\hpp\Win32\Release\IdTelnet.hpp
..\Output\hpp\Win32\Release\IdTelnetServer.hpp
..\Output\hpp\Win32\Release\IdText.hpp
..\Output\hpp\Win32\Release\IdThread.hpp
..\Output\hpp\Win32\Release\IdThreadComponent.hpp
..\Output\hpp\Win32\Release\IdThreadSafe.hpp
..\Output\hpp\Win32\Release\IdTime.hpp
..\Output\hpp\Win32\Release\IdTimeServer.hpp
..\Output\hpp\Win32\Release\IdTimeUDP.hpp
..\Output\hpp\Win32\Release\IdTimeUDPServer.hpp
..\Output\hpp\Win32\Release\IdTraceRoute.hpp
..\Output\hpp\Win32\Release\IdTrivialFTP.hpp
..\Output\hpp\Win32\Release\IdTrivialFTPBase.hpp
..\Output\hpp\Win32\Release\IdTrivialFTPServer.hpp
..\Output\hpp\Win32\Release\IdUDPBase.hpp
..\Output\hpp\Win32\Release\IdUDPClient.hpp
..\Output\hpp\Win32\Release\IdUDPServer.hpp
..\Output\hpp\Win32\Release\IdUnixTime.hpp
..\Output\hpp\Win32\Release\IdUnixTimeServer.hpp
..\Output\hpp\Win32\Release\IdUnixTimeUDP.hpp
..\Output\hpp\Win32\Release\IdUnixTimeUDPServer.hpp
..\Output\hpp\Win32\Release\IdURI.hpp
..\Output\hpp\Win32\Release\IdUriUtils.hpp
..\Output\hpp\Win32\Release\IdUserAccounts.hpp
..\Output\hpp\Win32\Release\IdUserPassProvider.hpp
..\Output\hpp\Win32\Release\IdVCard.hpp
..\Output\hpp\Win32\Release\IdWebDAV.hpp
..\Output\hpp\Win32\Release\IdWhois.hpp
..\Output\hpp\Win32\Release\IdWhoIsServer.hpp
..\Output\hpp\Win32\Release\IdWinsock2.hpp
..\Output\hpp\Win32\Release\IdWship6.hpp
..\Output\hpp\Win32\Release\IdYarn.hpp
..\Output\hpp\Win32\Release\IdZLib.hpp
..\Output\hpp\Win32\Release\IdZLibCompressorBase.hpp
..\Output\hpp\Win32\Release\IdZLibConst.hpp
..\Output\hpp\Win32\Release\IdZLibHeaders.hpp
315 file(s) copied.
C:\Users\Public\Documents\Embarcadero\Studio\19.0\Bpl\dclIndyCore250.bpl
C:\Users\Public\Documents\Embarcadero\Studio\19.0\Bpl\dclIndyProtocols250.bpl
C:\Users\Public\Documents\Embarcadero\Studio\19.0\Bpl\IndyCore250.bpl
C:\Users\Public\Documents\Embarcadero\Studio\19.0\Bpl\IndyProtocols250.bpl
C:\Users\Public\Documents\Embarcadero\Studio\19.0\Bpl\IndySystem250.bpl
5 file(s) copied.
..\Output\Bpi\Win32\Release\IndyCore250.bpi
..\Output\Bpi\Win32\Release\IndyProtocols250.bpi
..\Output\Bpi\Win32\Release\IndySystem250.bpi
3 file(s) copied.
..\Output\Obj\Win32\Release\IndyCore250.lib
..\Output\Obj\Win32\Release\IndyProtocols250.lib
..\Output\Obj\Win32\Release\IndySystem250.lib
3 file(s) copied.
1 file(s) copied.
1 file(s) copied.
1 file(s) copied.
PS C:\Indy10\trunk\Lib>
Hope someone here can help.
Pieter
|
|
|
|