Changeset 317 for trunk/Packages/PinConnection
- Timestamp:
- Jun 21, 2024, 12:44:53 PM (5 months ago)
- Location:
- trunk/Packages/PinConnection
- Files:
-
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/PinConnection/CommFrame.pas
r316 r317 1 unit UCommFrame; 2 3 {$mode Delphi}{$H+} 1 unit CommFrame; 4 2 5 3 interface … … 7 5 uses 8 6 Classes, Dialogs, SysUtils, SpecializedList, UBinarySerializer, 9 UCommPin;7 CommPin; 10 8 11 9 type -
trunk/Packages/PinConnection/CommPin.pas
r316 r317 1 unit UCommPin; 2 3 {$mode Delphi}{$H+}{$M+} 1 unit CommPin; 4 2 5 3 interface … … 75 73 destructor Destroy; override; 76 74 end; 75 77 76 78 77 implementation -
trunk/Packages/PinConnection/CommThread.pas
r316 r317 1 unit UCommThread; 2 3 {$mode Delphi}{$H+} 1 unit CommThread; 4 2 5 3 interface 6 4 7 5 uses 8 Classes, SysUtils, UCommPin, SyncObjs, Common,6 Classes, SysUtils, CommPin, SyncObjs, Common, 9 7 DateUtils, Threading, SpecializedList, UBinarySerializer; 10 8 … … 49 47 destructor Destroy; override; 50 48 end; 49 51 50 52 51 implementation
Note:
See TracChangeset
for help on using the changeset viewer.