15 lines
263 B
ObjectPascal
15 lines
263 B
ObjectPascal
|
|
program FileMapping;
|
||
|
|
|
||
|
|
uses
|
||
|
|
Forms,
|
||
|
|
MapTestForm in 'MapTestForm.pas' {TestForm},
|
||
|
|
MapWriteForm in 'MapWriteForm.pas' {WriteForm};
|
||
|
|
|
||
|
|
{$R *.RES}
|
||
|
|
|
||
|
|
begin
|
||
|
|
Application.Initialize;
|
||
|
|
Application.CreateForm(TTestForm, TestForm);
|
||
|
|
Application.Run;
|
||
|
|
end.
|