source: branches/ByteArray/VarInt.pas

Last change on this file was 5, checked in by chronos, 3 months ago
File size: 140 bytes
Line 
1unit VarInt;
2
3interface
4
5uses
6 Classes, SysUtils;
7
8type
9 TVarInt = record
10 Size: Byte;
11 Value: Int64;
12 end;
13
14implementation
15
16end.
17
Note: See TracBrowser for help on using the repository browser.