lazarus-ccr/examples/serial_filesend/serialfilesend.lpr
sekelsenmat 1349587f8d some more comments for the serial example
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1329 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2010-09-27 13:33:05 +00:00

28 lines
539 B
ObjectPascal

{
Serial File Transfer example with Lazarus
This project requires Synaser, which can be downloaded via svn with:
https://synalist.svn.sourceforge.net/svnroot/synalist/trunk/
}
program serialfilesend;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, laz_synapse, mainform
{ you can add units after this };
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TformSerial, formSerial);
Application.Run;
end.