-
Notifications
You must be signed in to change notification settings - Fork 0
/
LAC.INV
29 lines (28 loc) · 1.09 KB
/
LAC.INV
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
(****************************************************************)
(* *)
(* Description : þ Lecture ancien/dernier client. *)
(* Note : þ Le fichier de lecture est "ACLIENT.DAT" et *)
(* est lu dans le r‚pertoire courant. *)
(* þ Cette proc‚dure fait partie de l'unit‚ *)
(* ICLIENT. *)
(* *)
(****************************************************************)
Function LectureAncienClient(Var Client:ClientType):Byte;
Label Fin;
Var Handle : Integer;
Tableau : Pointer;
Begin
LectureAncienClient := 0;
SauveDerniereLigne(Tableau);
EcritDerLigne('Lecture dernier client en cours...');
Handle := Ouvre('ACLIENT.DAT',0);
If(Handle = -1)Then
Begin
FillChar(Client,SizeOf(Client),0); { Claire le buffer client }
LectureAncienClient := 1;
Goto Fin;
End;
LitEnregistrement(Handle,0,SizeOf(Client),Client);
Ferme(Handle);
Fin:RestitueDerniereLigne(Tableau);
End;