Componentes.Terceros.jvcl/official/3.32/examples/JvScreenCapture/JvScreenCaptureProj.dpr

14 lines
291 B
ObjectPascal

program JvScreenCaptureProj;
uses
Forms,
JvScreenCaptureMainFormU in 'JvScreenCaptureMainFormU.pas' {JvScreenCaptureMainForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TJvScreenCaptureMainForm, JvScreenCaptureMainForm);
Application.Run;
end.