使用手册
Delphi 实例下方的代码帮助您创建一个显示 "Hello World" 的简单程序。注意:保护后不会改变程序的可用性。当前项目的完整代码放置在 "Tutorials\Simple envelope protection\Delphi\"文件夹。 program test; {$APPTYPE CONSOLE} uses Windows, SysUtils; begin MessageBox(0, 'This is The Enigma Protector test application.'#10#13 + 'If after protection you will see this message then the application works correctly!', 'Test Application', 0); end. |