Change chat timewait to 5secs. Handle zero RTT. Dubiously fix crash from sheduling...
[brdnet.git] / ZidanStore.pas
blob68c36911261215ea8babfaeb21dec757c48464f7
1 unit ZidanStore;
3 INTERFACE
5 type
6 tfid=array [0..20] of byte;
7 tStoreObjectInfo=object
8 hnd:file of byte;
9 final:boolean;
10 rc:Word;
11 length:LongWord;
12 procedure Open(const fid:tfid);
13 end;
15 IMPLEMENTATION
16 procedure tStoreObjectInfo.Open(const fid:tfid);
17 begin
18 end;
20 END.