source: trunk/Packages/PinConnection/PinConnection.pas

Last change on this file was 340, checked in by chronos, 3 months ago
  • Modified: PinConnection made as Lazarus package with reduced number of files.
File size: 254 bytes
Line 
1unit PinConnection;
2
3interface
4
5uses
6 Classes, SysUtils;
7
8procedure Register;
9
10
11implementation
12
13uses
14 CommFrame, CommThread;
15
16procedure Register;
17begin
18 RegisterComponents('PinConnection', [TCommFrame, TCommThread]);
19end;
20
21end.
22
Note: See TracBrowser for help on using the repository browser.