问题描述
我试图将Lockbox 3.5安装到Delphi7.我已经到了可以编译的地步,但是TBytes
遇到了一些麻烦.Delphi将TBytes
视为Undeclared identifier
.
I am trying to install Lockbox 3.5 to Delphi 7. I have come to the point where it should compile, but I am having some trouble with TBytes
.Delphi sees TBytes
as an Undeclared identifier
.
我是第一年的学生,不知道如何解决此问题.
I am a student in my first year and don't know exactly how to fix this problem.
function SelfTest_Key: TBytes;
可以在uTPLb_BlockCipher下找到此脚本.
This script is found under uTPLb_BlockCipher.
function Stream_to_Base64(ASource: TStream; const ATransform: TBytes = nil) : TBytes;
此脚本位于uTPLb_StreamUtils下
This script is found under uTPLb_StreamUtils
我非常感谢您的投入.
I would really appreciate any input.
推荐答案
从项目发布历史:
- 删除了对所有其他编译器(XE6和D2010除外)的支持.对其他编译器的支持即将返回.
- ...
从项目网站:
- 支持Delphi 7及更高版本中的所有编译器(尽管目前仅编写了D2010和XE6的程序包头).
- ...
上面的页面包含指向下载区域的链接,该链接显示:
The above page contains a link to the download area which says:
这是长期支持"(LTS)版本.这个版本是 通常用于企业部署或其他不部署的用户 想要频繁的重大升级.
This is the "Long Term Support" (LTS) version. This release is typically used for Enterprise deployments or other users that do not want frequent major upgrades .
当前的LTS版本是3.5.0. LTS设置为此版本 2014年7月11日.可以从SourceForge此处下载LTS https://tplockbox.googlecode.com/svn/tags/LB%203.5.0.0%2011-Jul-2014 .
The current LTS version is 3.5.0 . The LTS was set to this version on 11-Jul-2014. The LTS can be downloaded from SourceForge here https://tplockbox.googlecode.com/svn/tags/LB%203.5.0.0%2011-Jul-2014.
稳定-当前的稳定版本
推荐给想要稳定高质量产品的用户,并且 及时访问增强功能和缺陷更正.
Recommended to users who want a stable high quality product, and timely access to enhancements and defect corrections.
当前的STABLE版本是3.6.0.稳定设置为此 版本于2014年11月11日.可以从SourceForge下载STABLE 这里 https://tplockbox.googlecode.com/svn/标签/LB%203.6.0.0%2010-Nov-2014/.
The current STABLE version is 3.6.0 . The STABLE was set to this version on 11-Nov-2014. The STABLE can be downloaded from SourceForge here https://tplockbox.googlecode.com/svn/tags/LB%203.6.0.0%2010-Nov-2014/.
因此,您似乎需要下载3.6.0版.
So, it would appear that you need to download version 3.6.0.
请花一些时间阅读上面链接的页面上的文档.
Please take time to read the documentation at the pages linked above.
这篇关于将LockBox 3安装到Delphi 7的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!