You've already forked lazarus-ccr
- initial support for InvalidCount , which allow to run program even if trial rules are broken (but only exactly set count) - IDE serial number used instead of volume serial git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@921 8e941d3f-bd1b-0410-a28a-d453659cc2b4
17 lines
206 B
ObjectPascal
17 lines
206 B
ObjectPascal
program Exselapi;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
uses
|
|
Interfaces,
|
|
Forms,
|
|
Exselap1 in 'EXSELAP1.PAS' {Form1};
|
|
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|