Skip to content

Commit a39227e

Browse files
committed
forgotten example
1 parent c737a25 commit a39227e

File tree

2 files changed

+162
-162
lines changed

2 files changed

+162
-162
lines changed

Examples/Raw_Http/Simple/Simple.dpr

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ const
1313
// AFAIK, ithappens.ru redirects to ithappens.me
1414
Url = 'http://ithappens.ru/';
1515
var
16-
curl : TCurlHandle;
16+
curl : HCurl;
1717
res : TCurlCode;
1818
code : longint;
19-
ul, dl : double;
19+
ul, dl : TCurlOff;
2020
effurl : PAnsiChar;
2121
engines : PCurlSList;
2222
begin
@@ -30,13 +30,13 @@ begin
3030
// Check for errors
3131
if (res = CURLE_OK) then begin
3232
curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, code);
33-
curl_easy_getinfo(curl, CURLINFO_SIZE_UPLOAD, ul);
34-
curl_easy_getinfo(curl, CURLINFO_SIZE_DOWNLOAD, dl);
33+
curl_easy_getinfo(curl, CURLINFO_SIZE_UPLOAD_T, ul);
34+
curl_easy_getinfo(curl, CURLINFO_SIZE_DOWNLOAD_T, dl);
3535
curl_easy_getinfo(curl, CURLINFO_EFFECTIVE_URL, effurl);
3636
curl_easy_getinfo(curl, CURLINFO_SSL_ENGINES, engines);
3737
Writeln(Format('HTTP response code: %d', [ code ] ));
38-
Writeln(Format('Uploaded: %d', [ round(ul) ] ));
39-
Writeln(Format('Downloaded: %d', [ round(dl) ] ));
38+
Writeln(Format('Uploaded: %d', [ ul ] ));
39+
Writeln(Format('Downloaded: %d', [ dl ] ));
4040
Writeln(Format('Effective URL: %s', [ effurl ] ));
4141
Writeln('SSL engines:');
4242
while engines <> nil do begin
Lines changed: 156 additions & 156 deletions
Original file line numberDiff line numberDiff line change
@@ -1,156 +1,156 @@
1-
 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2-
<PropertyGroup>
3-
<ProjectGuid>{E42D5134-0174-4832-80CF-EB793762C3C2}</ProjectGuid>
4-
<ProjectVersion>13.4</ProjectVersion>
5-
<FrameworkType>None</FrameworkType>
6-
<MainSource>Simple.dpr</MainSource>
7-
<Base>True</Base>
8-
<Config Condition="'$(Config)'==''">Debug</Config>
9-
<Platform Condition="'$(Platform)'==''">Win64</Platform>
10-
<TargetedPlatforms>3</TargetedPlatforms>
11-
<AppType>Console</AppType>
12-
</PropertyGroup>
13-
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
14-
<Base>true</Base>
15-
</PropertyGroup>
16-
<PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''">
17-
<Base_Win64>true</Base_Win64>
18-
<CfgParent>Base</CfgParent>
19-
<Base>true</Base>
20-
</PropertyGroup>
21-
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
22-
<Base_Win32>true</Base_Win32>
23-
<CfgParent>Base</CfgParent>
24-
<Base>true</Base>
25-
</PropertyGroup>
26-
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_1)'!=''">
27-
<Cfg_1>true</Cfg_1>
28-
<CfgParent>Base</CfgParent>
29-
<Base>true</Base>
30-
</PropertyGroup>
31-
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win32)'!=''">
32-
<Cfg_1_Win32>true</Cfg_1_Win32>
33-
<CfgParent>Cfg_1</CfgParent>
34-
<Cfg_1>true</Cfg_1>
35-
<Base>true</Base>
36-
</PropertyGroup>
37-
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_2)'!=''">
38-
<Cfg_2>true</Cfg_2>
39-
<CfgParent>Base</CfgParent>
40-
<Base>true</Base>
41-
</PropertyGroup>
42-
<PropertyGroup Condition="'$(Base)'!=''">
43-
<DCC_UsePackage>fmx;IndySystem;DBXInterBaseDriver;DataSnapCommon;DataSnapClient;DataSnapServer;DataSnapProviderClient;DbxCommonDriver;dbxcds;DBXOracleDriver;CustomIPTransport;dsnap;fmxase;IndyCore;inetdbxpress;IPIndyImpl;bindcompfmx;rtl;dbrtl;DbxClientDriver;bindcomp;inetdb;xmlrtl;IndyProtocols;DBXMySQLDriver;bindengine;soaprtl;DBXInformixDriver;DBXFirebirdDriver;inet;fmxobj;DBXSybaseASADriver;fmxdae;dbexpress;DataSnapIndy10ServerTransport;$(DCC_UsePackage)</DCC_UsePackage>
44-
<DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace)</DCC_Namespace>
45-
<DCC_DcuOutput>.\$(Platform)\$(Config)</DCC_DcuOutput>
46-
<DCC_ExeOutput>.\$(Platform)\$(Config)</DCC_ExeOutput>
47-
<DCC_E>false</DCC_E>
48-
<DCC_N>false</DCC_N>
49-
<DCC_S>false</DCC_S>
50-
<DCC_F>false</DCC_F>
51-
<DCC_K>false</DCC_K>
52-
</PropertyGroup>
53-
<PropertyGroup Condition="'$(Base_Win64)'!=''">
54-
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
55-
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
56-
<VerInfo_Locale>1033</VerInfo_Locale>
57-
<DCC_UsePackage>DBXSybaseASEDriver;vclimg;vcldb;vcldsnap;DBXDb2Driver;vcl;DBXMSSQLDriver;webdsnap;adortl;DBXOdbcDriver;vclactnband;bindcompvcl;vclie;vcltouch;websnap;VclSmp;dsnapcon;vclx;$(DCC_UsePackage)</DCC_UsePackage>
58-
</PropertyGroup>
59-
<PropertyGroup Condition="'$(Base_Win32)'!=''">
60-
<DCC_UsePackage>JvGlobus;JvMM;JvManagedThreads;JvDlgs;JvCrypt;TeeDB;Rave100VCL;vclib;inetdbbde;JvNet;JvDotNetCtrls;DBXSybaseASEDriver;vclimg;fmi;JvXPCtrls;vcldb;vcldsnap;DBXDb2Driver;Intraweb_120_160;JvCore;vclribbon;frxe16;vcl;CloudService;DBXMSSQLDriver;CodeSiteExpressPkg;FmxTeeUI;JvAppFrm;JvDB;JvRuntimeDesign;webdsnap;GR32_DSGN_RSXE2;JclDeveloperTools;JvDocking;adortl;JvWizards;JvHMI;JvBands;vcldbx;frx16;JvPluginSystem;Tee;JclContainers;DBXOdbcDriver;JvCmp;JvSystem;svnui;ibxpress;JvTimeFramework;JvControls;intrawebdb_120_160;frxDB16;fs16;vclactnband;FMXTee;TeeUI;JvJans;bindcompvcl;JvStdCtrls;JvCustom;Jcl;vclie;JvPageComps;JvPrintPreview;vcltouch;websnap;VclSmp;fsDB16;DataSnapConnectors;dsnapcon;JclVcl;JvPascalInterpreter;vclx;svn;bdertl;JvBDE;$(DCC_UsePackage)</DCC_UsePackage>
61-
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
62-
<VerInfo_Locale>1033</VerInfo_Locale>
63-
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
64-
</PropertyGroup>
65-
<PropertyGroup Condition="'$(Cfg_1)'!=''">
66-
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
67-
<DCC_Optimize>false</DCC_Optimize>
68-
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
69-
<DCC_DebugInfoInExe>true</DCC_DebugInfoInExe>
70-
<DCC_RemoteDebug>true</DCC_RemoteDebug>
71-
</PropertyGroup>
72-
<PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
73-
<Manifest_File>None</Manifest_File>
74-
<VerInfo_Locale>1033</VerInfo_Locale>
75-
<DCC_RemoteDebug>false</DCC_RemoteDebug>
76-
</PropertyGroup>
77-
<PropertyGroup Condition="'$(Cfg_2)'!=''">
78-
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
79-
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
80-
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
81-
<DCC_DebugInformation>false</DCC_DebugInformation>
82-
</PropertyGroup>
83-
<ItemGroup>
84-
<DelphiCompile Include="$(MainSource)">
85-
<MainSource>MainSource</MainSource>
86-
</DelphiCompile>
87-
<DCCReference Include="..\..\..\Src\Curl.Lib.pas"/>
88-
<BuildConfiguration Include="Release">
89-
<Key>Cfg_2</Key>
90-
<CfgParent>Base</CfgParent>
91-
</BuildConfiguration>
92-
<BuildConfiguration Include="Base">
93-
<Key>Base</Key>
94-
</BuildConfiguration>
95-
<BuildConfiguration Include="Debug">
96-
<Key>Cfg_1</Key>
97-
<CfgParent>Base</CfgParent>
98-
</BuildConfiguration>
99-
</ItemGroup>
100-
<ProjectExtensions>
101-
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
102-
<Borland.ProjectType/>
103-
<BorlandProject>
104-
<Delphi.Personality>
105-
<VersionInfo>
106-
<VersionInfo Name="IncludeVerInfo">False</VersionInfo>
107-
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
108-
<VersionInfo Name="MajorVer">1</VersionInfo>
109-
<VersionInfo Name="MinorVer">0</VersionInfo>
110-
<VersionInfo Name="Release">0</VersionInfo>
111-
<VersionInfo Name="Build">0</VersionInfo>
112-
<VersionInfo Name="Debug">False</VersionInfo>
113-
<VersionInfo Name="PreRelease">False</VersionInfo>
114-
<VersionInfo Name="Special">False</VersionInfo>
115-
<VersionInfo Name="Private">False</VersionInfo>
116-
<VersionInfo Name="DLL">False</VersionInfo>
117-
<VersionInfo Name="Locale">1049</VersionInfo>
118-
<VersionInfo Name="CodePage">1251</VersionInfo>
119-
</VersionInfo>
120-
<VersionInfoKeys>
121-
<VersionInfoKeys Name="CompanyName"/>
122-
<VersionInfoKeys Name="FileDescription"/>
123-
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
124-
<VersionInfoKeys Name="InternalName"/>
125-
<VersionInfoKeys Name="LegalCopyright"/>
126-
<VersionInfoKeys Name="LegalTrademarks"/>
127-
<VersionInfoKeys Name="OriginalFilename"/>
128-
<VersionInfoKeys Name="ProductName"/>
129-
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
130-
<VersionInfoKeys Name="Comments"/>
131-
</VersionInfoKeys>
132-
<Source>
133-
<Source Name="MainSource">Simple.dpr</Source>
134-
</Source>
135-
<Excluded_Packages>
136-
<Excluded_Packages Name="$(BDSBIN)\fmidesigner160.bpl">FMI Form designer and property and component editors</Excluded_Packages>
137-
<Excluded_Packages Name="C:\Users\Public\Documents\RAD Studio\9.0\Bpl\_XE2.bpl">(untitled)</Excluded_Packages>
138-
<Excluded_Packages Name="$(BDSBIN)\dclIPIndyImpl160.bpl">IP Abstraction Indy Implementation Design Time</Excluded_Packages>
139-
<Excluded_Packages Name="$(BDSBIN)\bcboffice2k160.bpl">Embarcadero C++Builder Office 2000 Servers Package</Excluded_Packages>
140-
<Excluded_Packages Name="$(BDSBIN)\bcbofficexp160.bpl">Embarcadero C++Builder Office XP Servers Package</Excluded_Packages>
141-
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k160.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
142-
<Excluded_Packages Name="$(BDSBIN)\dclofficexp160.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
143-
</Excluded_Packages>
144-
</Delphi.Personality>
145-
<Deployment/>
146-
<Platforms>
147-
<Platform value="Win64">True</Platform>
148-
<Platform value="OSX32">False</Platform>
149-
<Platform value="Win32">True</Platform>
150-
</Platforms>
151-
</BorlandProject>
152-
<ProjectFileVersion>12</ProjectFileVersion>
153-
</ProjectExtensions>
154-
<Import Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')" Project="$(BDS)\Bin\CodeGear.Delphi.Targets"/>
155-
<Import Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')" Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj"/>
156-
</Project>
1+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<PropertyGroup>
3+
<ProjectGuid>{E42D5134-0174-4832-80CF-EB793762C3C2}</ProjectGuid>
4+
<ProjectVersion>14.6</ProjectVersion>
5+
<FrameworkType>None</FrameworkType>
6+
<MainSource>Simple.dpr</MainSource>
7+
<Base>True</Base>
8+
<Config Condition="'$(Config)'==''">Debug</Config>
9+
<Platform Condition="'$(Platform)'==''">Win32</Platform>
10+
<TargetedPlatforms>3</TargetedPlatforms>
11+
<AppType>Console</AppType>
12+
</PropertyGroup>
13+
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
14+
<Base>true</Base>
15+
</PropertyGroup>
16+
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
17+
<Base_Win32>true</Base_Win32>
18+
<CfgParent>Base</CfgParent>
19+
<Base>true</Base>
20+
</PropertyGroup>
21+
<PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''">
22+
<Base_Win64>true</Base_Win64>
23+
<CfgParent>Base</CfgParent>
24+
<Base>true</Base>
25+
</PropertyGroup>
26+
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_1)'!=''">
27+
<Cfg_1>true</Cfg_1>
28+
<CfgParent>Base</CfgParent>
29+
<Base>true</Base>
30+
</PropertyGroup>
31+
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win32)'!=''">
32+
<Cfg_1_Win32>true</Cfg_1_Win32>
33+
<CfgParent>Cfg_1</CfgParent>
34+
<Cfg_1>true</Cfg_1>
35+
<Base>true</Base>
36+
</PropertyGroup>
37+
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_2)'!=''">
38+
<Cfg_2>true</Cfg_2>
39+
<CfgParent>Base</CfgParent>
40+
<Base>true</Base>
41+
</PropertyGroup>
42+
<PropertyGroup Condition="'$(Base)'!=''">
43+
<DCC_UsePackage>fmx;IndySystem;DBXInterBaseDriver;DataSnapCommon;DataSnapClient;DataSnapServer;DataSnapProviderClient;DbxCommonDriver;dbxcds;DBXOracleDriver;CustomIPTransport;dsnap;fmxase;IndyCore;inetdbxpress;IPIndyImpl;bindcompfmx;rtl;dbrtl;DbxClientDriver;bindcomp;inetdb;xmlrtl;IndyProtocols;DBXMySQLDriver;bindengine;soaprtl;DBXInformixDriver;DBXFirebirdDriver;inet;fmxobj;DBXSybaseASADriver;fmxdae;dbexpress;DataSnapIndy10ServerTransport;$(DCC_UsePackage)</DCC_UsePackage>
44+
<DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace)</DCC_Namespace>
45+
<DCC_DcuOutput>.\$(Platform)\$(Config)</DCC_DcuOutput>
46+
<DCC_ExeOutput>.\$(Platform)\$(Config)</DCC_ExeOutput>
47+
<DCC_E>false</DCC_E>
48+
<DCC_N>false</DCC_N>
49+
<DCC_S>false</DCC_S>
50+
<DCC_F>false</DCC_F>
51+
<DCC_K>false</DCC_K>
52+
</PropertyGroup>
53+
<PropertyGroup Condition="'$(Base_Win32)'!=''">
54+
<DCC_UsePackage>JvGlobus;JvMM;JvManagedThreads;JvDlgs;JvCrypt;TeeDB;Rave100VCL;vclib;inetdbbde;JvNet;JvDotNetCtrls;DBXSybaseASEDriver;vclimg;fmi;JvXPCtrls;vcldb;vcldsnap;DBXDb2Driver;Intraweb_120_160;JvCore;vclribbon;frxe16;vcl;CloudService;DBXMSSQLDriver;CodeSiteExpressPkg;FmxTeeUI;JvAppFrm;JvDB;JvRuntimeDesign;webdsnap;GR32_DSGN_RSXE2;JclDeveloperTools;JvDocking;adortl;JvWizards;JvHMI;JvBands;vcldbx;frx16;JvPluginSystem;Tee;JclContainers;DBXOdbcDriver;JvCmp;JvSystem;svnui;ibxpress;JvTimeFramework;JvControls;intrawebdb_120_160;frxDB16;fs16;vclactnband;FMXTee;TeeUI;JvJans;bindcompvcl;JvStdCtrls;JvCustom;Jcl;vclie;JvPageComps;JvPrintPreview;vcltouch;websnap;VclSmp;fsDB16;DataSnapConnectors;dsnapcon;JclVcl;JvPascalInterpreter;vclx;svn;bdertl;JvBDE;$(DCC_UsePackage)</DCC_UsePackage>
55+
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
56+
<VerInfo_Locale>1033</VerInfo_Locale>
57+
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
58+
</PropertyGroup>
59+
<PropertyGroup Condition="'$(Base_Win64)'!=''">
60+
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
61+
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
62+
<VerInfo_Locale>1033</VerInfo_Locale>
63+
<DCC_UsePackage>DBXSybaseASEDriver;vclimg;vcldb;vcldsnap;DBXDb2Driver;vcl;DBXMSSQLDriver;webdsnap;adortl;DBXOdbcDriver;vclactnband;bindcompvcl;vclie;vcltouch;websnap;VclSmp;dsnapcon;vclx;$(DCC_UsePackage)</DCC_UsePackage>
64+
</PropertyGroup>
65+
<PropertyGroup Condition="'$(Cfg_1)'!=''">
66+
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
67+
<DCC_Optimize>false</DCC_Optimize>
68+
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
69+
<DCC_DebugInfoInExe>true</DCC_DebugInfoInExe>
70+
<DCC_RemoteDebug>true</DCC_RemoteDebug>
71+
</PropertyGroup>
72+
<PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
73+
<Manifest_File>None</Manifest_File>
74+
<VerInfo_Locale>1033</VerInfo_Locale>
75+
<DCC_RemoteDebug>false</DCC_RemoteDebug>
76+
</PropertyGroup>
77+
<PropertyGroup Condition="'$(Cfg_2)'!=''">
78+
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
79+
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
80+
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
81+
<DCC_DebugInformation>false</DCC_DebugInformation>
82+
</PropertyGroup>
83+
<ItemGroup>
84+
<DelphiCompile Include="$(MainSource)">
85+
<MainSource>MainSource</MainSource>
86+
</DelphiCompile>
87+
<DCCReference Include="..\..\..\Src\Curl.Lib.pas"/>
88+
<BuildConfiguration Include="Release">
89+
<Key>Cfg_2</Key>
90+
<CfgParent>Base</CfgParent>
91+
</BuildConfiguration>
92+
<BuildConfiguration Include="Base">
93+
<Key>Base</Key>
94+
</BuildConfiguration>
95+
<BuildConfiguration Include="Debug">
96+
<Key>Cfg_1</Key>
97+
<CfgParent>Base</CfgParent>
98+
</BuildConfiguration>
99+
</ItemGroup>
100+
<ProjectExtensions>
101+
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
102+
<Borland.ProjectType/>
103+
<BorlandProject>
104+
<Delphi.Personality>
105+
<VersionInfo>
106+
<VersionInfo Name="IncludeVerInfo">False</VersionInfo>
107+
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
108+
<VersionInfo Name="MajorVer">1</VersionInfo>
109+
<VersionInfo Name="MinorVer">0</VersionInfo>
110+
<VersionInfo Name="Release">0</VersionInfo>
111+
<VersionInfo Name="Build">0</VersionInfo>
112+
<VersionInfo Name="Debug">False</VersionInfo>
113+
<VersionInfo Name="PreRelease">False</VersionInfo>
114+
<VersionInfo Name="Special">False</VersionInfo>
115+
<VersionInfo Name="Private">False</VersionInfo>
116+
<VersionInfo Name="DLL">False</VersionInfo>
117+
<VersionInfo Name="Locale">1049</VersionInfo>
118+
<VersionInfo Name="CodePage">1251</VersionInfo>
119+
</VersionInfo>
120+
<VersionInfoKeys>
121+
<VersionInfoKeys Name="CompanyName"/>
122+
<VersionInfoKeys Name="FileDescription"/>
123+
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
124+
<VersionInfoKeys Name="InternalName"/>
125+
<VersionInfoKeys Name="LegalCopyright"/>
126+
<VersionInfoKeys Name="LegalTrademarks"/>
127+
<VersionInfoKeys Name="OriginalFilename"/>
128+
<VersionInfoKeys Name="ProductName"/>
129+
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
130+
<VersionInfoKeys Name="Comments"/>
131+
</VersionInfoKeys>
132+
<Source>
133+
<Source Name="MainSource">Simple.dpr</Source>
134+
</Source>
135+
<Excluded_Packages>
136+
<Excluded_Packages Name="$(BDSBIN)\fmidesigner160.bpl">FMI Form designer and property and component editors</Excluded_Packages>
137+
<Excluded_Packages Name="C:\Users\Public\Documents\RAD Studio\9.0\Bpl\_XE2.bpl">(untitled)</Excluded_Packages>
138+
<Excluded_Packages Name="$(BDSBIN)\dclIPIndyImpl160.bpl">IP Abstraction Indy Implementation Design Time</Excluded_Packages>
139+
<Excluded_Packages Name="$(BDSBIN)\bcboffice2k160.bpl">Embarcadero C++Builder Office 2000 Servers Package</Excluded_Packages>
140+
<Excluded_Packages Name="$(BDSBIN)\bcbofficexp160.bpl">Embarcadero C++Builder Office XP Servers Package</Excluded_Packages>
141+
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k160.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
142+
<Excluded_Packages Name="$(BDSBIN)\dclofficexp160.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
143+
</Excluded_Packages>
144+
</Delphi.Personality>
145+
<Deployment/>
146+
<Platforms>
147+
<Platform value="OSX32">False</Platform>
148+
<Platform value="Win32">True</Platform>
149+
<Platform value="Win64">True</Platform>
150+
</Platforms>
151+
</BorlandProject>
152+
<ProjectFileVersion>12</ProjectFileVersion>
153+
</ProjectExtensions>
154+
<Import Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')" Project="$(BDS)\Bin\CodeGear.Delphi.Targets"/>
155+
<Import Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')" Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj"/>
156+
</Project>

0 commit comments

Comments
 (0)