1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
delphi-kblvis/KBLVisualizer.dpr
2004-12-08 09:12:15 +00:00

15 lines
270 B
ObjectPascal

program KBLEdit;
uses
Forms,
KBLEditU in 'KBLEditU.pas' {KBLEditForm};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'PopOnTop Keyboard Layout Editor';
Application.CreateForm(TKBLEditForm, KBLEditForm);
Application.Run;
end.