Changeset 575 for PinConnection/PacketBurst.pas
- Timestamp:
- Jun 25, 2024, 11:56:51 AM (4 months ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
PinConnection/PacketBurst.pas
r574 r575 1 unit UPacketBurst; 2 3 {$mode Delphi}{$H+} 1 unit PacketBurst; 4 2 5 3 interface 6 4 7 5 uses 8 Classes, UCommPin, SyncObjs, UCommon, SysUtils, SpecializedList,9 DateUtils, UBinarySerializer;6 Classes, CommPin, SyncObjs, Common, SysUtils, SpecializedList, 7 DateUtils, BinarySerializer; 10 8 11 9 type … … 39 37 end; 40 38 39 41 40 implementation 42 41 … … 59 58 begin 60 59 Active := False; 61 SendThreadEvent.Free;62 PacketSinglePin.Free;63 PacketBurstPin.Free;60 FreeAndNil(SendThreadEvent); 61 FreeAndNil(PacketSinglePin); 62 FreeAndNil(PacketBurstPin); 64 63 inherited; 65 64 end;
Note:
See TracChangeset
for help on using the changeset viewer.