test.dpr

来自「ASProtect的2.4版」· DPR 代码 · 共 16 行

DPR
16
字号
program test;

uses
  Windows,
  main in 'main.pas';

const
  MessageTitle = 'Information';
  MessageStr   = 'This example shows the way of using external registration scheme.'#13#10+
                 'It uses a constant located in file test.bin.';
begin

  MessageBox(0, MessageStr, MessageTitle, MB_ICONINFORMATION );
  Start;

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?