Test.dpr
上传用户:graphite
上传日期:2020-09-09
资源大小:2587k
文件大小:0k
源码类别:

破解

开发平台:

Others

  1. program test;
  2. uses
  3.   Windows,
  4.   main in 'main.pas';
  5. const
  6.   MessageTitle = 'Information';
  7.   MessageStr   = 'This example shows the way of using external registration scheme.'#13#10+
  8.                  'It uses a constant located in file test.bin.';
  9. begin
  10.   MessageBox(0, MessageStr, MessageTitle, MB_ICONINFORMATION );
  11.   Start;
  12. end.