14 lines
291 B
ObjectPascal
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.
|