{ Copyright (C) 2008 Peter Green For conditions of distribution and use, see copyright notice in zlib_license.txt which is included in the package ----------------------------------------------------------------------------- } program Project1; uses Forms, Unit1 in 'Unit1.pas' {Form1}, pngwrite in 'pngwrite.pas'; {$R *.RES} begin Application.Initialize; Application.CreateForm(TForm1, Form1); Application.Run; end.