-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f97d956
commit 9b5fff5
Showing
7 changed files
with
542 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
package TP_LockBox3; | ||
|
||
{$R *.res} | ||
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} | ||
{$ALIGN 8} | ||
{$ASSERTIONS ON} | ||
{$BOOLEVAL OFF} | ||
{$DEBUGINFO OFF} | ||
{$EXTENDEDSYNTAX ON} | ||
{$IMPORTEDDATA ON} | ||
{$IOCHECKS ON} | ||
{$LOCALSYMBOLS ON} | ||
{$LONGSTRINGS ON} | ||
{$OPENSTRINGS ON} | ||
{$OPTIMIZATION OFF} | ||
{$OVERFLOWCHECKS OFF} | ||
{$RANGECHECKS OFF} | ||
{$REFERENCEINFO ON} | ||
{$SAFEDIVIDE OFF} | ||
{$STACKFRAMES ON} | ||
{$TYPEDADDRESS OFF} | ||
{$VARSTRINGCHECKS ON} | ||
{$WRITEABLECONST OFF} | ||
{$MINENUMSIZE 1} | ||
{$IMAGEBASE $400000} | ||
{$DEFINE DEBUG} | ||
{$ENDIF IMPLICITBUILDING} | ||
{$DESCRIPTION 'TurboPower LockBox 3 run-time package'} | ||
{$LIBSUFFIX '_XE7'} | ||
{$RUNONLY} | ||
{$IMPLICITBUILD OFF} | ||
|
||
requires | ||
rtl, | ||
dbrtl; | ||
|
||
contains | ||
TPLB3.BlockCipher in '..\..\run\TPLB3.BlockCipher.pas', | ||
TPLB3.StreamUtils in '..\..\run\TPLB3.StreamUtils.pas', | ||
TPLB3.StreamCipher in '..\..\run\TPLB3.StreamCipher.pas', | ||
TPLB3.CryptographicLibrary in '..\..\run\TPLB3.CryptographicLibrary.pas', | ||
TPLB3.BaseNonVisualComponent in '..\..\run\TPLB3.BaseNonVisualComponent.pas', | ||
TPLB3.Codec in '..\..\run\TPLB3.Codec.pas', | ||
TPLB3.ECB in '..\..\run\TPLB3.ECB.pas', | ||
TPLB3.CBC in '..\..\run\TPLB3.CBC.pas', | ||
TPLB3.PCBC in '..\..\run\TPLB3.PCBC.pas', | ||
TPLB3.CFB_Block in '..\..\run\TPLB3.CFB_Block.pas', | ||
TPLB3.CFB_8Bit in '..\..\run\TPLB3.CFB_8Bit.pas', | ||
TPLB3.OFB in '..\..\run\TPLB3.OFB.pas', | ||
TPLB3.CTR in '..\..\run\TPLB3.CTR.pas', | ||
TPLB3.HashDsc in '..\..\run\TPLB3.HashDsc.pas', | ||
TPLB3.SHA1 in '..\..\run\TPLB3.SHA1.pas', | ||
TPLB3.BinaryUtils in '..\..\run\TPLB3.BinaryUtils.pas', | ||
TPLB3.Hash in '..\..\run\TPLB3.Hash.pas', | ||
TPLB3.MD5 in '..\..\run\TPLB3.MD5.pas', | ||
TPLB3.Random in '..\..\run\TPLB3.Random.pas', | ||
TPLB3.StreamToBlock in '..\..\run\TPLB3.StreamToBlock.pas', | ||
TPLB3.Base64 in '..\..\run\TPLB3.Base64.pas', | ||
TPLB3.CipherUtils in '..\..\run\TPLB3.CipherUtils.pas', | ||
TPLB3.AES in '..\..\run\TPLB3.AES.pas', | ||
TPLB3.PointerArithmetic in '..\..\run\TPLB3.PointerArithmetic.pas', | ||
TPLB3.HugeCardinal in '..\..\run\TPLB3.HugeCardinal.pas', | ||
TPLB3.IntegerUtils in '..\..\run\TPLB3.IntegerUtils.pas', | ||
TPLB3.HugeCardinalUtils in '..\..\run\TPLB3.HugeCardinalUtils.pas', | ||
TPLB3.MemoryStreamPool in '..\..\run\TPLB3.MemoryStreamPool.pas', | ||
TPLB3.RSA_Primitives in '..\..\run\TPLB3.RSA_Primitives.pas', | ||
TPLB3.RSA_Engine in '..\..\run\TPLB3.RSA_Engine.pas', | ||
TPLB3.Asymetric in '..\..\run\TPLB3.Asymetric.pas', | ||
TPLB3.Signatory in '..\..\run\TPLB3.Signatory.pas', | ||
TPLB3.CodecIntf in '..\..\run\TPLB3.CodecIntf.pas', | ||
TPLB3.Constants in '..\..\run\TPLB3.Constants.pas', | ||
TPLB3.I18n in '..\..\run\TPLB3.I18n.pas', | ||
TPLB3.SimpleBlockCipher in '..\..\run\TPLB3.SimpleBlockCipher.pas', | ||
TPLB3.DES in '..\..\run\TPLB3.DES.pas', | ||
TPLB3.TDES in '..\..\run\TPLB3.TDES.pas', | ||
TPLB3.BlowFish in '..\..\run\TPLB3.BlowFish.pas', | ||
TPLB3.Decorators in '..\..\run\TPLB3.Decorators.pas', | ||
TPLB3.DCP.twofish_Modified in '..\..\run\TPLB3.DCP.twofish_Modified.pas', | ||
TPLB3.TwoFish in '..\..\run\TPLB3.TwoFish.pas', | ||
TPLB3.XXTEA in '..\..\run\TPLB3.XXTEA.pas', | ||
TPLB3.SHA2 in '..\..\run\TPLB3.SHA2.pas', | ||
TPLB3.SVN_Keywords in '..\..\run\TPLB3.SVN_Keywords.pas', | ||
TPLB3.OpenSSL in '..\..\run\TPLB3.OpenSSL.pas', | ||
TPLB3.Compatibility in '..\..\run\TPLB3.Compatibility.pas'; | ||
|
||
end. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,179 @@ | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<ProjectGuid>{6E193D58-6668-4CC1-97B5-24B9FFB97F66}</ProjectGuid> | ||
<MainSource>TP_LockBox3.dpk</MainSource> | ||
<Base>True</Base> | ||
<Config Condition="'$(Config)'==''">Debug</Config> | ||
<TargetedPlatforms>1025</TargetedPlatforms> | ||
<AppType>Package</AppType> | ||
<FrameworkType>None</FrameworkType> | ||
<ProjectVersion>18.1</ProjectVersion> | ||
<Platform Condition="'$(Platform)'==''">Win32</Platform> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''"> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="('$(Platform)'=='Android' and '$(Base)'=='true') or '$(Base_Android)'!=''"> | ||
<Base_Android>true</Base_Android> | ||
<CfgParent>Base</CfgParent> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''"> | ||
<Base_Win32>true</Base_Win32> | ||
<CfgParent>Base</CfgParent> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''"> | ||
<Cfg_1>true</Cfg_1> | ||
<CfgParent>Base</CfgParent> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''"> | ||
<Cfg_2>true</Cfg_2> | ||
<CfgParent>Base</CfgParent> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win32)'!=''"> | ||
<Cfg_2_Win32>true</Cfg_2_Win32> | ||
<CfgParent>Cfg_2</CfgParent> | ||
<Cfg_2>true</Cfg_2> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Base)'!=''"> | ||
<DCC_DcuOutput>..\..\work-products\ephemeral\dcu\D10_1Brln\$(Platform)</DCC_DcuOutput> | ||
<DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;Winapi;$(DCC_Namespace)</DCC_Namespace> | ||
<DCC_ImageBase>00400000</DCC_ImageBase> | ||
<DCC_E>false</DCC_E> | ||
<DCC_S>false</DCC_S> | ||
<DCC_F>false</DCC_F> | ||
<DCC_N>false</DCC_N> | ||
<SanitizedProjectName>TP_LockBox3</SanitizedProjectName> | ||
<RuntimeOnlyPackage>true</RuntimeOnlyPackage> | ||
<GenDll>true</GenDll> | ||
<DCC_K>false</DCC_K> | ||
<DllSuffix>_XE7</DllSuffix> | ||
<GenPackage>true</GenPackage> | ||
<VerInfo_Locale>1033</VerInfo_Locale> | ||
<DCC_Description>TurboPower LockBox 3 run-time package</DCC_Description> | ||
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=;CFBundleName=</VerInfo_Keys> | ||
<DCC_OutputNeverBuildDcps>true</DCC_OutputNeverBuildDcps> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Base_Android)'!=''"> | ||
<EnabledSysJars>android-support-v4.dex.jar;cloud-messaging.dex.jar;fmx.dex.jar;google-analytics-v2.dex.jar;google-play-billing.dex.jar;google-play-licensing.dex.jar;google-play-services.dex.jar</EnabledSysJars> | ||
<VerInfo_Keys>package=com.embarcadero.$(MSBuildProjectName);label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey=</VerInfo_Keys> | ||
<BT_BuildType>Debug</BT_BuildType> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Base_Win32)'!=''"> | ||
<VerInfo_Locale>1033</VerInfo_Locale> | ||
<DCC_Namespace>System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace> | ||
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo> | ||
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Cfg_1)'!=''"> | ||
<DCC_DebugInformation>0</DCC_DebugInformation> | ||
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols> | ||
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo> | ||
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Cfg_2)'!=''"> | ||
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames> | ||
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define> | ||
<DCC_Optimize>false</DCC_Optimize> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Cfg_2_Win32)'!=''"> | ||
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys> | ||
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<DelphiCompile Include="$(MainSource)"> | ||
<MainSource>MainSource</MainSource> | ||
</DelphiCompile> | ||
<DCCReference Include="rtl.dcp"/> | ||
<DCCReference Include="dbrtl.dcp"/> | ||
<DCCReference Include="..\..\run\TPLB3.BlockCipher.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.StreamUtils.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.StreamCipher.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.CryptographicLibrary.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.BaseNonVisualComponent.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.Codec.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.ECB.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.CBC.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.PCBC.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.CFB_Block.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.CFB_8Bit.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.OFB.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.CTR.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.HashDsc.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.SHA1.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.BinaryUtils.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.Hash.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.MD5.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.Random.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.StreamToBlock.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.Base64.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.CipherUtils.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.AES.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.PointerArithmetic.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.HugeCardinal.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.IntegerUtils.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.HugeCardinalUtils.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.MemoryStreamPool.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.RSA_Primitives.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.RSA_Engine.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.Asymetric.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.Signatory.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.CodecIntf.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.Constants.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.I18n.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.SimpleBlockCipher.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.DES.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.TDES.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.BlowFish.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.Decorators.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.DCP.twofish_Modified.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.TwoFish.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.XXTEA.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.SHA2.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.SVN_Keywords.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.OpenSSL.pas"/> | ||
<DCCReference Include="..\..\run\TPLB3.Compatibility.pas"/> | ||
<BuildConfiguration Include="Debug"> | ||
<Key>Cfg_2</Key> | ||
<CfgParent>Base</CfgParent> | ||
</BuildConfiguration> | ||
<BuildConfiguration Include="Base"> | ||
<Key>Base</Key> | ||
</BuildConfiguration> | ||
<BuildConfiguration Include="Release"> | ||
<Key>Cfg_1</Key> | ||
<CfgParent>Base</CfgParent> | ||
</BuildConfiguration> | ||
</ItemGroup> | ||
<ProjectExtensions> | ||
<Borland.Personality>Delphi.Personality.12</Borland.Personality> | ||
<Borland.ProjectType>Package</Borland.ProjectType> | ||
<BorlandProject> | ||
<Delphi.Personality> | ||
<Source> | ||
<Source Name="MainSource">TP_LockBox3.dpk</Source> | ||
</Source> | ||
<Excluded_Packages> | ||
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k240.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages> | ||
<Excluded_Packages Name="$(BDSBIN)\dclofficexp240.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages> | ||
</Excluded_Packages> | ||
</Delphi.Personality> | ||
<Platforms> | ||
<Platform value="Android">False</Platform> | ||
<Platform value="iOSDevice32">False</Platform> | ||
<Platform value="iOSDevice64">True</Platform> | ||
<Platform value="iOSSimulator">False</Platform> | ||
<Platform value="OSX32">False</Platform> | ||
<Platform value="Win32">True</Platform> | ||
<Platform value="Win64">False</Platform> | ||
</Platforms> | ||
</BorlandProject> | ||
<ProjectFileVersion>12</ProjectFileVersion> | ||
</ProjectExtensions> | ||
<Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/> | ||
<Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/> | ||
</Project> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<ProjectGuid>{DC1BD900-94B2-440B-A5BB-CD3AE245F681}</ProjectGuid> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Projects Include="TP_LockBox3.dproj"> | ||
<Dependencies/> | ||
</Projects> | ||
<Projects Include="dclTP_LockBox3.dproj"> | ||
<Dependencies/> | ||
</Projects> | ||
</ItemGroup> | ||
<ProjectExtensions> | ||
<Borland.Personality>Default.Personality.12</Borland.Personality> | ||
<Borland.ProjectType/> | ||
<BorlandProject> | ||
<Default.Personality/> | ||
</BorlandProject> | ||
</ProjectExtensions> | ||
<Target Name="TP_LockBox3"> | ||
<MSBuild Projects="TP_LockBox3.dproj"/> | ||
</Target> | ||
<Target Name="TP_LockBox3:Clean"> | ||
<MSBuild Projects="TP_LockBox3.dproj" Targets="Clean"/> | ||
</Target> | ||
<Target Name="TP_LockBox3:Make"> | ||
<MSBuild Projects="TP_LockBox3.dproj" Targets="Make"/> | ||
</Target> | ||
<Target Name="dclTP_LockBox3"> | ||
<MSBuild Projects="dclTP_LockBox3.dproj"/> | ||
</Target> | ||
<Target Name="dclTP_LockBox3:Clean"> | ||
<MSBuild Projects="dclTP_LockBox3.dproj" Targets="Clean"/> | ||
</Target> | ||
<Target Name="dclTP_LockBox3:Make"> | ||
<MSBuild Projects="dclTP_LockBox3.dproj" Targets="Make"/> | ||
</Target> | ||
<Target Name="Build"> | ||
<CallTarget Targets="TP_LockBox3;dclTP_LockBox3"/> | ||
</Target> | ||
<Target Name="Clean"> | ||
<CallTarget Targets="TP_LockBox3:Clean;dclTP_LockBox3:Clean"/> | ||
</Target> | ||
<Target Name="Make"> | ||
<CallTarget Targets="TP_LockBox3:Make;dclTP_LockBox3:Make"/> | ||
</Target> | ||
<Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package dclTP_LockBox3; | ||
|
||
{$R *.res} | ||
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} | ||
{$ALIGN 8} | ||
{$ASSERTIONS ON} | ||
{$BOOLEVAL OFF} | ||
{$DEBUGINFO OFF} | ||
{$EXTENDEDSYNTAX ON} | ||
{$IMPORTEDDATA ON} | ||
{$IOCHECKS ON} | ||
{$LOCALSYMBOLS ON} | ||
{$LONGSTRINGS ON} | ||
{$OPENSTRINGS ON} | ||
{$OPTIMIZATION OFF} | ||
{$OVERFLOWCHECKS OFF} | ||
{$RANGECHECKS OFF} | ||
{$REFERENCEINFO ON} | ||
{$SAFEDIVIDE OFF} | ||
{$STACKFRAMES ON} | ||
{$TYPEDADDRESS OFF} | ||
{$VARSTRINGCHECKS ON} | ||
{$WRITEABLECONST OFF} | ||
{$MINENUMSIZE 1} | ||
{$IMAGEBASE $400000} | ||
{$DEFINE DEBUG} | ||
{$ENDIF IMPLICITBUILDING} | ||
{$DESCRIPTION 'TurboPower LockBox 3 design-time package'} | ||
{$LIBSUFFIX '_XE7'} | ||
{$DESIGNONLY} | ||
{$IMPLICITBUILD OFF} | ||
|
||
requires | ||
rtl, | ||
designide, | ||
vclie, | ||
vclimg, | ||
TP_LockBox3; | ||
|
||
contains | ||
TPLB3.ComponentRegistration in '..\..\design\TPLB3.ComponentRegistration.pas', | ||
TPLB3.ComponentEditors in '..\..\design\TPLB3.ComponentEditors.pas', | ||
TPLB3.ComponentAbout in '..\..\design\TPLB3.ComponentAbout.pas' {TPLb_fmComponentAbout}, | ||
TPLB3.InfoUtils in '..\..\design\TPLB3.InfoUtils.pas'; | ||
|
||
end. |
Oops, something went wrong.