-
Notifications
You must be signed in to change notification settings - Fork 0
/
SYSTEMS.PAS
13682 lines (11515 loc) · 338 KB
/
SYSTEMS.PAS
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Û
³ Malte Genesis/Module des SystŠmes Û
³ Û
³ dition Chantal pour Mode R‚el/IV - Version 1.1 & Û
³ dition AdŠle pour Mode R‚el/V - Version 1.1 Û
³ 1995/02/02 Û
³ Û
³ Tous droits r‚serv‚s par les Chevaliers de Malte (C) Û
³ Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Nom du programmeur
ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ
Sylvain Maltais
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette unit‚ offre toutes les fonctions et proc‚dures de base pour la
gestion de la m‚moire, ressources, des fichiers, des imprimantes, des port
de communications, horloge, modem, clavier et de la manette de jeux.
Remarques
ÍÍÍÍÍÍÍÍÍ
þ Le ®Borland Pascal 7¯ supporte difficilement cette unit‚ … cause de ‡a
portabilit‚ trop faible au niveau des informations de d‚boguage pour
cette raison il peut ˆtre n‚cessaire de changer les directives de
compilation pour interdire les codes suppl‚mentaires de d‚boguage.
þ Voici quelques pr‚cisions sur les directives de compilation conditionnel:
ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
³ Directive ³ Description ³
ÆÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍØÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ͵
³ Debug ³ Autorise cette unit‚ … ˆtre reconnue par le³
³ ³ d‚bogueur. ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ DirectDos ³ Autorise les fonctions suppl‚mentaires de lecture³
³ ³ directe des informations fichiers du Dos. ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ DPMI ³ Interdit les accŠs directe en m‚moire et les³
³ ³ m‚canismes non-support‚ par le mode prot‚g‚. ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ ExtraCom ³ Obtient des fonctions suppl‚mentaires dans des³
³ ³ situations pr‚cise en rapport avec la communication.³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ ExtraHandle ³ Cette directive permet d'avoir accŠs aux fonctions³
³ ³ "Handle" peut utilis‚ dans la programmation³
³ ³ conventionnelle. ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ ExtraMemory ³ Permet d'utiliser des fonctions de gestion de³
³ ³ m‚moire ‚tendue. ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ HeapVram ³ Autorise l'utilisation d'un tas dans la m‚moire³
³ ³ vid‚o en mode texte (inutilis‚ en mode graphique...)³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ HighSecurity ³ Indique … cette unit‚ de rajouter des protections³
³ ³ suppl‚mentaires dans le cas d' une mauvaise³
³ ³ programmation. ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ Joystick ³ Supporte la manette de jeu standard. ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ MaxInt ³ Autorise le d‚tournement des Interruptions 09h, 17h,³
³ ³ 28h, ... pour permettre aux autres applications³
³ ³ d'utiliser les ressource de cette unit‚! ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ MaxOverlay ³ Indique … l'unit‚ qu'elle est compiler en "Overlay"³
³ ³ (Recouvrement). ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ NoSpooler ³ Interdit … cette unit‚ de s'occuper de la gestion³
³ ³ d'un tampon suppl‚mentaire d'imprimante (Spooler). ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ OldPlayerSound ³ Permet d'obtenir les fonctions de musique d'un PC³
³ ³ Speaker en utilisant les anciennes m‚thodes (Basica,³
³ ³ ...) ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ OptionPartition³Directive donnant accŠs aux fonctions compl‚mentaires³
³ ³ de la manipulation des disques dur d'une fa‡on³
³ ³ directe. ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ Security ³ Niveau de s‚curit‚ autoris‚ dans les proc‚dures de³
³ ³ gestion de m‚moire. ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ ShortBF ³ Utilise la m‚thode compacte pour les banques de³
³ ³ fichiers (Recommander que oui). ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ Windows ³ Demande … l'unit‚ d'utiliser autant que possible les³
³ ³ fonctions Windows pour la gestion de cette unit‚. ³
ÃÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ´
³ __TINY__ ³ D‚finit cette unit‚ dans des circonstances compacte³
³ ³ et minimum. ³
ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
þ Abr‚viation:
AC: AsynChronous Chr: Character
AL: AdLib Cmd: Commande
BF: BankFiles Dbl: Double
fa: File attribut Def: Default
FN: FileName Emm: Expand Memory Manager
FS: FileSize err: Erreur
IO: Input/Output Esc: Escape
Kr: Color Ext: Extension
Ln: Line IBM: International Business Machine (IBM PC)
Lo: Low ind: Index
Ls: List Int: Integer ou Interruption
ND: Nombre divis‚ Irq: Interruption Resquest
NM: Nombre modulo Max: Maximum
Nm: Number Mem: Memory
PC: PointerCharacter Min: Minimum
Pg: Page Mod: Modulo
pn: PrinterName P2P: Papier … Papier
ps: PrinterString Prn: Printer
RB: RemovableBuffer Ptr: Pointeur
Sf: SizeOf Str: String
Sz: Size Swp: Swap
VS: VirtualSwap Sys: System
Wd: Word Ver: Version
WM: WriterMode Win: Window(s)
x0: Tampon Xms: eXtended Memory System
þ La centralisation des proc‚dures primaire dans cette mˆme unit‚ et le
refus de les mettres dans plusieurs unit‚s diff‚rentes pour ‚conomiser
la m‚moire … pour but de faire la guerre au bug. Plus un programme est
centralis‚, plus le problŠme des lignes devient visibles...
}
Unit Systems;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
INTERFACE
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
{$I DEF.INC}
{$IFDEF MaxOverlay}
{$O+}
{$ELSE}
{$O-}
{$ENDIF}
Uses
WinTex,Adele,Dostex,Pritex,Systex,WordTex;
{$DEFINE __PChr}
{$DEFINE ___Close}
Const
SYSDrive:String[4]='SYS:'; { Unit‚ r‚serv‚ au noyau de l'ensemble
Malte Genesis. }
CRLF:Str2=#13#10;
CRLFEnd:Chr=#0;
PathSystems:PChr=NIL;
{$IFNDEF NoSpooler}
SpoolName:Str12='SPOOLER.PR$';
{$ENDIF}
Const
{$IFNDEF NotReal}
XmsErr:Byte=0; { DerniŠre erreur survenu au niveau XMS }
EmmErr:Byte=0; { DerniŠre erreur survenu au niveau EMM/EMS }
{$ENDIF}
NoEms:Boolean=False; { Interdiction de l'utilisation de la m‚moire EMS? }
VSwpInit:Boolean=False; { change (Swapping) Vid‚o autoris‚ }
DescrInFile:Boolean=True; { Autorise le chargement de description avec les noms de fichiers}
ActifScrSave:Boolean=True;
MakeBak:Boolean=True;
GetSysErr:Word=0;
BrkOn:Boolean=False;
{ Variable de carte de son }
IsAdLib:Boolean=False; { AdLib disponible }
IsGravis:Boolean=False; { Gravis Ultra Sound disponible }
IsRoland:Boolean=False; { Roland/Midi disponible }
IsSoundBlaster:Boolean=False;{ SoundBlaster disponible }
IsTandyDigital:Boolean=False;{ Tandy Digital disponible }
SoundMem:Word=0; { M‚moire disponible sur la carte de son }
SoundOutput:Byte=soPCSpeaker;{ Sortie de son }
SoundPort:Word=$FFFF;
DMAChannel:Byte=1; { Canal DMA utilis‚ pour la transmission du signal sonore}
IsPlayMod:Boolean=False; { Un .MOD est en train de jouer }
{ Variable de son de travail }
{$IFDEF OldPlayerSound}
NoteOctave:Integer=4;
NoteFrac:Real=0.875;
NoteDur:Integer=0;
NoteLen:Real=0.25;
NoteQuarter:Real=500.0;
{$ENDIF}
{$IFDEF DirectDos}
DirectDos:Boolean=False;
{$ENDIF}
Var
SysErr:Word Absolute GetSysErr;
{$IFDEF __Windows__}
DosError:Word Absolute GetSysErr;
{$ENDIF}
PathDskSwp:PathStr;
PathBBS:PChr;
PrvKey:Word; { Cette variable permet de connaŒtre la touche pr‚c‚dente clavier ayant
‚t‚ extraŒte du tampon clavier avant la touche venant d'ˆtre extraŒte.}
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Fonction AltPress Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette fonction indique si une ou les 2 touches "Alt" sont enfonc‚es.
Cette fonction doit avoir d'abord ‚t‚ charg‚ en m‚moire au lancement
du programme par le constructeur ®InitSystems¯.
}
{$IFDEF Real}
Const AltPress:Function:Boolean=DirectAltPress;
{$ENDIF}
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Fonction CtrlPress Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette fonction indique si une ou les 2 touches "Ctrl" sont enfonc‚es.
Cette fonction doit avoir d'abord ‚t‚ charg‚ en m‚moire au lancement
du programme par le constructeur ®InitSystems¯.
}
{$IFDEF Real}
CtrlPress:Function:Boolean=DirectCtrlPress;
FillChr:Procedure(Var X;Len:Word;Value:Byte)=DirectFillChar;
GetIntVec:Procedure(IntNo:Byte;Var Vector:Pointer)=DirectGetIntVec;
GetRawTimer:Function:LongInt=DirectGetRawTimer;
GetRawTimerB:Function:Byte=DirectGetRawTimerB;
JoyPos:Function(Axe:Byte):Word=DirectJoyPos;
KeyPress:Function:Boolean=DirectKeyPress;
LShiftPress:Function:Boolean=DirectLShiftPress;
MoveLeft:Procedure(Const Source;Var Dest;Count:Word)=DirectMove;
PushKey:Procedure(K:Word)=DirectPushKey;
RawReadKey:Function:Word=DirectRawReadKey;
RShiftPress:Function:Boolean=DirectRShiftPress;
SetIntVec:Procedure(IntNo:Byte;Vector:Pointer)=DirectSetIntVec;
ShiftPress:Function:Boolean=DirectShiftPress;
{$ENDIF}
{$IFDEF __Windows__}
Const
KeyCount:Integer=0;
Focused:Boolean=False;
Reading:Boolean=False;
{$ENDIF}
Procedure AddPChr(Var S:String;PChr:PChr);
Procedure AddRec(Handle:Hdl;Size:Word;Var Buf);
Procedure AddStr(Var S:String;Const Add:String);
Procedure AddWdDec(Var S:String;X:Word);
Function AllocDrv(X:Word;Const FN:String):Word;
Function AllocFont(X:Word;Var _SizeOf:Word):Pointer;
Function AllocFunc(X:Word;Const FN:String;Var _SizeOf:Word):Pointer;
Function AllocLangFunc(X:Word;Var Sf:Word):Pointer;
Function AltCode2ASCII(Code:Word):Char;
{$IFDEF NotReal}Function AltPress:Boolean;{$ENDIF}
Function AppResFree(Res:Byte):LongInt;
Function AppResSize(Res:Byte):LongInt;
Function Ascii2AltCode(C:Char):Word;
Procedure BackStr(Var S:String);
Function BasicStr(X:LongInt):String;
Function BasicStrW(X:Word):String;
Function BBSPath:String;
Procedure Beep;
Procedure BFDone(Var Q:BF);
Function BFGetAddr(Var Q:BF;P:Word):Pointer;
Procedure BFGetFile(Var Q:BF;P:Word;Var Info:SearchRec);
Procedure BFInit(Var Q:BF);
Function BFDeleteEntry(Var Q:BF;P:Word):Boolean;
Function BFSizeFiles(Var Q:BF):LongInt;
Function BFMaxFiles(Var Q:BF):Integer;
Function BFNumFiles(Var Q:BF):Word;
Function BFNoFile(Var Q:BF):Boolean;
Procedure BFSetAttr(Var Q:BF;P,Attr:Word);
Procedure BFSetDescription(Var Q:BF;P:Word;Descr:PChr);
Function BinByte2Str(X:Byte):String;
Function BinStr2Nm(Const Str:String):LongInt;
Function BopBar(X:Byte):Byte;
Function CenterStr(Const S:String;Width:Byte):String;
Procedure ChDir(S:String);
Procedure ChgChr(Var S:String;Search,Replace:Char);
Function ChkPrint(Num:Byte):Boolean;
Function ChrDn(Chr:Char):Char;
Function ChrUp(Chr:Char):Char;
Procedure ClrKbd;
Function CmosExist:Boolean;
Function CmpLeft(Const Str,Cmp:String):Boolean;
Function CmpStr(Const a,b:String):Boolean;
Function ComExist(Num:Byte):Boolean;
Function Compare(Const Source,Dest;Len:Word):Boolean;
Function ComPortAddr(Num:Byte):Word;
Function ComputeSizeStr(Size:Long):String;
Function CopyFile(Const Source,Target:String):Byte;
Function Copy(Const S:String;Start,Len:Byte):String;
Procedure CreateDir(Dir:PChr);
{$IFDEF NotReal}
Function CtrlPress:Boolean;
{$ENDIF}
Function CStr(I:LongInt):String;
Function CStr2(I:LongInt;X:Byte):String;
Function CStrBasic(I:LongInt):String;
Function CStrDate(Time:LongInt):String;
Function CStrTime(Time:LongInt):String;
Function CStrTimeDos(Hour,Min,Sec:Byte):String;
Function CtrlCode2Ascii(Code:Word):Char;
{$IFNDEF __Windows__}
Procedure DefineVram(Mem:Word;Home:LongInt);
{$ENDIF}
Procedure Delay(Sec1000:Integer);
Function DelChr(Const S:String;Chr:Char):String;
Procedure DelChrAt(Var S:String;P:Byte);
Function DeleteFile(Name:String):Word;
Function DelRightSpc(Msg:PChr):PChr;
Function DelStr(Str:String;P,N:Byte):String;
Procedure Dir2DateNTimeStr(Info:SearchRec;Var Date,Time:String);
Function DirExist(Dir:String):Boolean;
Function DiskExist(Dsk:Byte):Boolean;
Function DiskFixed(Dsk:Byte):Boolean;
Function DiskFree(Dsk:Byte):LongInt;
Function DiskSize(Dsk:Byte):LongInt;
Function DiskUsed(Dsk:Byte):LongInt;
Procedure DoneMemManagers;
{$IFNDEF NoSpooler}Procedure DoneSpooler;{$ENDIF}
Procedure DoneSystems;
Function Dos2UnixPath(Path:String):String;
Function DosPath:String;
Function Drv2Dsk(Drv:Char):Byte;
Function DrvExist(Drv:Char):Boolean;
{$IFDEF ExtraHandle}Function DuplHandle(Handle:Hdl):Hdl;{$ENDIF}
Procedure Exec(Prg,Param:String);
{$IFNDEF NotReal}
Procedure ExtBiosCopy(Start,But:LongInt;Len:Word);
Procedure ExtBiosRead(ExtAddr:LongInt;BuPtr:Pointer;Len:Word);
Procedure ExtBiosWrite(BuPtr:Pointer;ExtAddr:LongInt;Len:Word);
{$ENDIF}
Procedure FileClose(Var Handle:Hdl);
Function FileCreate(Name:String):Hdl;
Function FileCreateAndBackup(Const Path:String):Word;
Function FileExist(Name:String):Boolean;
Function FileExpand(Path:String):String;
Function FileGetAttr(Const FileName:String):Integer;
Function FileOpen(Name:String;Mode:Byte):Hdl;
Function FileSetAttr(Const FileName:String;Attr:Integer):Integer;
Function FileSize(Handle:Hdl):LongInt;
Function FileSplit(Path,Dir,Name,Ext:PChr):Word;
Procedure FileTrunc(Handle:Hdl);
{$IFDEF NotReal}
Procedure FillChr(Var X;Len:Word;Value:Byte);
{$ENDIF}
Procedure FillClr(Var X;Len:Word);
Procedure FillSpc(Var X;Len:Word);
Procedure FillWord(Var X;Len,Value:Word);
Procedure FindFirst(Const Name:String;Attr:Word;Var F:SearchRec);
Procedure FindNext(Var F:SearchRec);
{$IFDEF Real}
Procedure FreeDrv(Seg:Word);
{$IFNDEF __TMT__}
InLine($07/ { POP ES }
$CD/$9C);{ INT 9Ch }
{$ENDIF}
{$ENDIF}
{$IFDEF ExtraMemory}Function FreeMemHMA:Word;{$ENDIF}
Function FSearch(Const Find,Path:String):String;
Procedure FSplit(Path:PathStr;Var Dir:DirStr;Var Name:NameStr;Var Ext:ExtStr);
Function GetAbsFileTxtLn(Handle:Hdl;P:LongInt):String;
Function GetCapsLck:Boolean;
Function GetCurrentDir:String;
Procedure GetDate(Var Year:Word;Var Month,Day,DayOfWeek:Byte);
Function GetDrv:Char;
{ Cette fonction est en InLine car elle prend moins d'espace qu'un appelle long...}
Function GetDsk:Byte;{$IFNDEF NoInLine}
InLine($B4/$19/ { MOV AH,19h }
$CD/$21); { INT 21h }
{$ENDIF}
Function GetDskLabel(Dsk:Byte):String;
Function GetEnv(Const Str:String):String;
Procedure GetFAttr(Var F;Var Attr:Word);
Function GetFile(Const Name:String;P:LongInt;Size:Word;Var Buf):Word;
Function GetFilePos(Handle:Hdl):LongInt;
Function GetFileSize(Const Name:String):LongInt;
Function GetFileTime(Handle:Hdl;Var Time:LongInt):Word;
Function GetFileTxtLn(Handle:Hdl):String;
{$IFDEF NotReal}Procedure GetIntVec(IntNo:Byte;Var Vector:Pointer);{$ENDIF}
{$IFDEF ExtraMemory}Function GetMemHMA(Malloc:Word):Word;{$ENDIF}
Function GetModeIns:Boolean;
Function GetModOutput:Byte;
Function GetNmChr(Const Source:String;Chr:Char):Byte;
Function GetNmLck:Boolean;
Function GetNxtChr(I:Word;S:PChr):Char;
Function GetPackTimer:LongInt;
{$IFDEF OptionPartition}Function GetPartSec(BDsk,Head:Byte;SecCyl:Word;Var Buf:PartSecType):Bool;{$ENDIF}
{$IFDEF NotReal}
Function GetRawTimer:LongInt;
Function GetRawTimerB:Byte;
{$ENDIF}
Procedure GetRec(Handle:Hdl;P:LongInt;Size:Word;Var Buf);
{$IFDEF ExtraMemory}
Function GetRevHiMem:Byte;
{$ENDIF}
Function GetScrollLck:Boolean;
{$IFDEF OptionPartition}Function GetSecTrack(BDsk:Byte):Word;{$ENDIF}
Function GetSerialNm(Dsk:Byte):LongInt;
Function GetSerialNmStr(Dsk:Byte):String;
Function GetStrComRLL(X:Word):String;
{$IFDEF ExtraMemory}
Function GetVerHiMem:Byte;
Function GlobalDisableA20:Word;
Function GlobalEnableA20:Word;
{$ENDIF}
Procedure HaltOutOfMem;
Procedure HaltRLL;
Function HexByte2Str(X:Byte):String;
Function HexLong2Str(X:LongInt):String;
Function HexStrToInt(Str:String):LongInt;
Function HexWord2Str(X:Word):String;
Function IinStr(I:Byte;Const S:String):Boolean;
Procedure IncStr(Var S:String;Chr:Char);
Procedure InitMemManagers;
{$IFNDEF Chantal}
Procedure InitSound;
{$ENDIF}
{$IFNDEF NoSpooler}
Procedure InitSpooler;
{$ENDIF}
Procedure InitSystems(X:Byte);
Procedure InsRec(Handle:Hdl;Position,Size:LongInt);
Procedure InsStr(Var S:String;Pos:Byte;Const Ins:String);
Function IntToStr(X:LongInt):String;
Function IsAllCard(Const Path:String):Boolean;
Function IsAltCode(Code:Word):Boolean;
function IsArabicNumber(Chr:Char):Boolean;
{$IFDEF ExtraHandle}
Function IsAttrDir(Attr:Word):Boolean;
{$ENDIF}
Function IsIsabel:Boolean;
Function IsPChrEmpty(PChr:PChr):Boolean;
Function IsRomanLetter(Chr:Char):Boolean;
Function IScan(Var Block;Size:Word;Const Str:String):Word;
{$IFNDEF NoSpooler}
Function IsSpoolerEmpty:Boolean;
{$ENDIF}
Function IsUpKey(K:Word):Boolean;
Function IsWildCard(Const Path:String):Boolean;
{$IFDEF Joystick}
Function JoyXPosTxts(Joy:Byte):Byte;
Function JoyYPosTxts(Joy:Byte):Byte;
{$ENDIF}
{$IFDEF NotReal}
Function KeyPress:Boolean;
{$ENDIF}
Function Left(Const Str:String;Num:Byte):String;
Function LeftJustifyStr(Const Str:String;Width:Byte):String;
Function LoadStr(Const PChr;Len:Byte):String;
{$IFDEF ExtraMemory}
{$IFNDEF NotReal}
Function LocalDisableA20:Word;
Function LocalEnableA20:Word;
Function LockExtMemBlockXMS(Handle:Word):LongInt;
{$ENDIF}
{$ENDIF}
Function LPT1Exist:Boolean;
Function LPT2Exist:Boolean;
Function LPT3Exist:Boolean;
Function LPT4Exist:Boolean;
{$IFDEF NotReal}
Function LShiftPress:Boolean;
{$ENDIF}
Function LTrim(Const S:String):String;
Function MaltePath:String;
Procedure MasterVolume(X:Byte);
{$IFDEF Real}Procedure MaxExpandHeap;{$ENDIF}
Function MoveFile(Const Source,Target:String):Byte;
{$IFDEF NotReal}
Procedure MoveLeft(Const Source;Var Dest;Count:Word);
{$ENDIF}
Procedure MoveRight(Const Source;Var Dest;Count:Word);
Procedure MoveWord2Byte(Const Source;Var Dest;Count:Word);
Function MultChr(Value:Char;Len:Byte):String;
Function New_(Name:String;Attr:Word):Hdl;
{$IFDEF ExtraHandle}
Function NewTmp(Name:String):Hdl;
Function NewAttr(Name:String;Attr:Word):Boolean;
{$ENDIF}
Function NmHandle(PSP:Word):Byte;
Procedure NoSound;
Function NxtKey:Word;
Function OctStr2Nm(Const Str:String):LongInt;
Function OpenSearchPath(Const Path,Name:String;Mode:Byte):Hdl;
Function OpenSearchPathNDos(Const Path,Name:String;Mode:Byte):Hdl;
Procedure PackTime(Var T:DateTime;Var P:LongInt);
Function PadChr(Source:String;Chr:Char;Len:Byte):String;
Function Path2Dir(Const Path:String):String;
Function Path2Drv(Const Path:String):Char;
Function Path2Dsk(Const Path:String):Byte;
Function Path2Ext(Const Path:String):String;
Function Path2Name(Const Path:String):String;
Function Path2NoDir(Path:String):String;
Function Path2NoExt(Const Path:String):String;
{$IFDEF OldPlayerSound}
Procedure Play(S:String);
{$ENDIF}
Function PrgPath(PSP:Word):String;
Function Print(Const Str:String;Num:Byte):Boolean;
Function PrintChr(Chr:Char;Num:Byte):Boolean;
{$IFDEF NotReal}Procedure PushKey(K:Word);{$ENDIF}
{$IFNDEF NoSpooler}Procedure PushStrSpooler(Const S:String);{$ENDIF}
Procedure PutFileLn(Handle:Hdl);
Procedure PutFileTxt(Handle:Hdl;Const X:String);
Procedure PutFileTxtLn(Handle:Hdl;X:String);
Function PXtrkWord(Var I:Word;Line:PChr):String;
{$IFDEF ExtraMemory}
{$IFNDEF NotReal}
Function QueryA20:Word;
Function QueryFreeBlockXMS:Word;
{$ENDIF}
{$ENDIF}
Function ReadChr(Handle:Hdl):Char;
Procedure ReadDsk(Drive:Byte;LSN,Sects:Word;Var Buffer);
Function ReadKey:Word;
{$IFDEF ExtraMemory}
{$IFNDEF NotReal}
Function ReallocExtMemBlockXMS(Handle,KBsize:Word):Word;
{$ENDIF}
{$ENDIF}
Function RecursiveMkDir(Path:String):Integer;
{$IFDEF ExtraHandle}Procedure ReDirHandle(ModelHandle,OtherHandle:Hdl);{$ENDIF}
{$IFDEF ExtraMemory}Function RelUpperMemBlockUMB(_Seg:Word):Word;{$ENDIF}
Procedure RenameFile(Source,Target:String);
Function RenDir(Const Source,Target:String):Boolean;
{$IFDEF ExtraMemory}Function ReqUpperMemBlockUMB(Malloc:Word;Var USeg:UMBSegRec):Word;{$ENDIF}
Procedure Ret;
Function RightJustifyStr(Str:String;Width:Byte):String;
{$IFDEF NotReal}
Function RShiftPress:Boolean;
{$ENDIF}
Function RTrim(S:String):String;
Function SearchFile(Const Path:String;Var Name:String;Var Size,Time:LongInt):Boolean;
Function SectorSize(Drv:Byte):Word;
Function SelAllIfNoExt(Path:String):String;
Procedure SetCapsLck(X:Boolean);
Procedure SetDate(Year:Word;Month,Day:Byte);
Procedure SetDsk(Disk:Byte);{$IFNDEF NoInLine}
InLine($5A/ { POP DX }
$B4/$0E/ { MOV AH,0Eh }
$CD/$21); { INT 21h }
{$ENDIF}
Function SetDskLabel(Dsk:Byte;Const S:String):Boolean;
Procedure SetFAttr(Var F;Attr:Word);
Function SetFile(Const Name:String;P:LongInt;Size:Word;Const Buf):Word;
Procedure SetFilePos(Handle:Hdl;P:LongInt);
Procedure SetFileTime(Handle:Hdl;Func:Byte;Var Time,Date:Word);
Procedure SetFirstRec(Handle:Hdl;Size:Word;Const Buf);
Procedure SetFTime(Var F;Time:LongInt);
Function SetFullName(Name:String):String;
Procedure SetInsMode(X:Boolean);
{$IFDEF NotReal}Procedure SetIntVec(IntNo:Byte;Vector:Pointer);{$ENDIF}
Procedure SetNmLck(X:Boolean);
Function SetPath4AddFile(Path:String):String;
{$IFDEF OldPlayerSound}
Procedure SetPlay;
{$ENDIF}
Procedure SetRec(Handle:Hdl;P:LongInt;Size:Word;Const X);
Procedure SetScrollLck(X:Boolean);
Procedure SetSysErr(Code:Word);
{$IFNDEF NoInLine}
InLine($8F/$06/>GetSysErr);
{$ENDIF}
{$IFDEF NotReal}
Function ShiftPress:Boolean;
{$ENDIF}
Procedure SkipSpcInLn(Var I:Byte;Const Line:String);
Procedure Sound(Frequency:Word);
Function Spc(Len:Byte):String;
Function SpcTab:String;
Function Src2Target(Source,Target:String):String;
{Procedure StartPlaying;}
{Procedure StopPlaying;}
Function Str0(X:LongInt;Len:Byte):String;
Function Str2(X:LongInt;AsNm:Byte):String;
Function Str2PChr(Const S:String):PChr;
Function StrCat(Dest,Source:PChr):PChr;
Procedure StrCatPas(Dest:PChr;Const Source:String);
Function StrComp(Str1,Str2:PChr):Integer;
Function StrCopy(Dest,Source:PChr):PChr;
Procedure StrCopy2Chr(Dest:PChr;Chr1,Chr2:Char);
Procedure StrCopyChr(Dest:PChr;Chr:Char);
Procedure StrDel(Str:PChr;Start,Len:Word);
Procedure StrDispose(Str:PChr);
Function StrDn(S:String):String;
Function StrECopy(Dest,Source:PChr):PChr;
Function StrEnd(Str:PChr):PChr;
Function StrI(I:Byte;Const S:String):Char;
Function StrIComp(Str1,Str2:PChr):Integer;
{$IFNDEF __Windows__}
Procedure StrInit(PC:PChr);
{$IFNDEF NoInLine}
InLine(ciPopDI/ { (1) POP DI }
ciPopES/ { (1) POP ES }
$32/$C0/ { (2) XOR AL,AL }
ciSTOSB); { (1) STOSB }
{$ENDIF}
{$ENDIF}
Procedure StrIns(S:PChr;P:Word;Ins:PChr);
Procedure StrInsChr(S:PChr;P:Word;Chr:Char);
Procedure StrInsBuf(S:PChr;P:Word;Const Ins;L2:Word);
Function StrLCat(Dest,Source:PChr;MaxLen:Word):PChr;
Function StrLComp(Str1,Str2:PChr;MaxLen:Word):Integer;
Function StrLCopy(Dest,Source:PChr;MaxLen:Word):PChr;
Function StrLen(Str:PChr):Word;
Function StrLIComp(Str1,Str2:PChr;MaxLen:Word):Integer;
Function StrLower(Str:PChr):PChr;
Function StrMove(Dest,Source:PChr;Count:Word):PChr;
Function StrNew(Str:PChr):PChr;
Function StrPas(Str:PChr):String;
Function StrPascalCopy(Var Dest;Size:Word;Source:String):PChr;
Function StrPCopy(Dest:PChr;Const Source:String):PChr;
Function StrPos(Str1,Str2:PChr):PChr;
Function StrRomanUp(S:String):String;
Function StrRScan(Str:PChr;Chr:Char):PChr;
Function StrScan(Str:PChr;Chr:Char):PChr;
Function StrToInt(Const S:String):LongInt;
Function StrToWord(Const S:String):Word;
Function StrUp(S:String):String;
Function StrUpper(Str:PChr):PChr;
Function StrUSpc(Const S:String;L:Byte):String;
Procedure SwapByte(Var A,B:Byte);
Procedure SwapInt(Var A,B:Integer);Far;
Procedure SwapWord(Var A,B:Word);Far;
Procedure SwapLong(Var A,B:LongInt);
Procedure SwapPointer(Var A,B:Pointer);
{$IFNDEF __Windows__}
Procedure SwapVectors;
{$ENDIF}
{$IFNDEF NoSpooler}
{$IFDEF OldSpooler}
Procedure TaskSpooler;
{$ENDIF}
{$ENDIF}
{$IFDEF __Windows__}
Function Test8087:Byte;
{$ENDIF}
Function Trim(Const S:String):String;
Function TruncName(Const Path:String;Max:Byte):String;
Function Unix2DosPath(Path:String):String;
{$IFDEF Real}
Function Unload:Boolean;{$IFNDEF NoInLine}
InLine($B4/$FF/ { MOV AH,FFh }
$CD/$8C);{ INT 8Ch }
{$ENDIF}
{$ENDIF}
{$IFDEF ExtraMemory}
{$IFNDEF NotReal}
Function UnlockExtMemBlockXms(Handle:Word):Word;
{$ENDIF}
{$ENDIF}
{$IFDEF OptionPartition}Procedure UnpackSecTrack(SecTrack:Word;Var Sec,Track:Word);{$ENDIF}
Procedure UnpackTime(P:LongInt;Var T:DateTime);
{$IFNDEF __Windows__}
Procedure VramSetOff;
{$ENDIF}
Function WildCardMatch(Const FileName,WildCard:String):Boolean;
Function WildCardSearch(Const Find,Path:String):String;
Function WordToStr(X:Word):String;
Procedure WriteDsk(Drive:Byte;LSN,Sects:Word;Const Buffer);
Function XAllocMem(Resource:Byte;Size:LongInt;Var Q:XInf):Boolean;
Function XFreeMem(Var Q:XInf):Boolean;
Function XGetPos(Var Q:XInf):LongInt;
Procedure XGetAbsRec(Var Q:XInf;P:LongInt;Size:Word;Var Buf);
Procedure XGetRec(Var Q:XInf;P:LongInt;Size:Word;Var Buf);
Function XReAllocMem(Var Q:XInf;NewSize:LongInt):Boolean;
Procedure XSetAbsRec(Var Q:XInf;P:LongInt;Size:Word;Const Buf);
{$IFDEF Security}Procedure XSetMode(Var Q:XInf;Mode:Byte);{$ENDIF}
Procedure XSetPos(Var Q:XInf;P:LongInt);
Procedure XSetRec(Var Q:XInf;P:LongInt;Size:Word;Const Buf);
Function XtrkBinNm(Var I:Byte;Const L:String):String;
Function XtrkDecNm(Var I:Byte;Const L:String):String;
Function XtrkHexNm(Var I:Byte;Const L:String):String;
Function XtrkOctNm(Var I:Byte;Const L:String):String;
Function XtrkPasStr(Var I:Byte;Const L:String;Var EM:Boolean):String;
Function XtrkWord(Var I:Byte;L:String):String;
Function Zero(Len:Byte):String;
Function _CopyFile(Const Source,Target:String;Proc:BackgroundCopy):Byte;
Function _CStrDate(Year,Month,Day,DayOfWeek:Word):String;
Procedure _DelAllSpcRight(Var S:String);
Procedure _Delay(Var OneMSDelay:Integer);
Procedure _GetAbsFileTxtLn(Handle:Hdl;P:LongInt;Var S:String);
Function _GetAbsRec(Handle:Hdl;P:LongInt;Size:Word;Var X):Word;
Function _GetFile(Const Name:String;Size:Word;Var Buf):Word;
Function _GetFilePTxtLn(Handle:Hdl;Buf:PChr;SizeBuf:Word):Word;
Procedure _GetFileTxtLn(Handle:Hdl;Var S:String);
Function _GetRec(Handle:Hdl;Size:Word;Var X):Word;
Function _GetSerialNmStr(Serial:LongInt):String;
Procedure _InsRec(Handle:Hdl;Position,Size:LongInt;SizeOfBuffer:Word;Var Buffer);
Procedure _Left(Var Str:String;Num:Byte);
Function _MoveFile(Const Source:String;Target:String;Proc:BackgroundCopy):Byte;
Function _NmHandle:Hdl;
Function _Open(Const Name:String):Hdl;
Function _PrgPath:String;
Procedure _PutFileLn(Handle:Hdl);
Procedure _PutFileTxt(Handle:Hdl;Const X:String);
Procedure _PutFileTxtLn(Handle:Hdl;X:String);
Procedure _SetAbsRec(Handle:Hdl;P:LongInt;Size:Word;Const X);
Procedure _SetFilePos(Handle:Hdl;P:LongInt;Method:Byte);
Function _SetRec(Handle:Hdl;Size:Word;Const X):Word;
Function _WordToStr(Const X):String;
Procedure _XGetRec(Var Inf:XInf;Size:Word;Var Buf);
Procedure _XSetRec(Var Inf:XInf;Size:Word;Const Buf);
Procedure __GetAbsFilePTxtLn(Handle:Hdl;Var P:LongInt;Buf:PChr;SizeBuf:Word);
Procedure __GetAbsFileTxtLn(Handle:Hdl;Var P:LongInt;Var S:String);
Const
_InitKbd:Procedure=Ret;
_BackKbd:Procedure={$IFNDEF NoSpooler}
{$IFDEF OldSpooler}TaskSpooler{$ELSE}Ret{$ENDIF}{$ELSE}Ret
{$ENDIF};
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
IMPLEMENTATION
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
Uses SysInter,Math,Time,Memories;
{$IFNDEF NoSpooler}Function BfSpool(P:LongInt):Char;Near;Forward;{$ENDIF}
{$IFNDEF NotReal}
Function EmmSetMapping(Handle:Word;Plane:Byte;Page:Word):Byte;Near;Forward;
Function EmmSaveMapping(Handle:Word):Byte;Near;Forward;
{$ENDIF}
Function FCBRen(Attr,Dsk:Byte;Const Source,Target:String):Boolean;Near;Forward;
{$IFNDEF NoSpooler}{$IFDEF MaxInt}
Procedure Int17h(Flags,CS,IP,AX,BX,CX,DX,SI,DI,DS,ES,BP:Word);Interrupt;Forward;
{$ENDIF}{$ENDIF}
{$IFDEF MaxInt}Procedure Int28h;Interrupt;Forward;{$ENDIF}
{$IFNDEF __Windows__}
Procedure irmSetPos(Output:Byte;P:LongInt);Near;Forward;
{$ENDIF}
{$IFNDEF NotReal}
Function MoveExtMemBlockXMS(Var MoveStruct:ExtMemMoveRec):Word;Near;Forward;
{$ENDIF}
Procedure TruncAfterSemicolon(Var S:String);Near;Forward;
Function XtrkXNm(X:Byte;Var I:Byte;Const L:String):String;Near;Forward;
Procedure _Close(Handle:Hdl);Near;Forward;
{$IFNDEF NoSpooler}Function _TaskSpooler:Boolean;Near;Forward;{$ENDIF}
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ·}
{³ C o n s t r u c t e u r º}
{ÔÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ}
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure InitSystems Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure initialise les m‚canismes de bases au bon fonctionnement
de toutes applications pour ®Malte Genesis IV: Chantal¯. Sans l'appel de
cette proc‚dure, les divisions par 0 planteront le programme, l'allocation
de m‚moire par les pilotes vid‚o de l'unit‚ ®Chantal¯ planteront et les
nombreuses fonctions et proc‚dures virtuel ne fonctionneront pas
correctement. C'est le coeur et l'ƒme de l'ensemble ®Malte Genesis IV:
Chantal¯...
}
Procedure InitSystems{X:Byte};
Type
FuncPtrType=Array[0..14]of Pointer;
MtxType=Array[0..104]of Record
Ofs,Len:Word;
End;
Var
StartUpBuf:StartUpRec Absolute CPU;
Ptr:Pointer;
Mtx:^MtxType Absolute Ptr;
{$IFDEF __Windows__}
Ver:LongInt;
SysFlags:SysFlagsWindows;
{$ENDIF}
{$IFDEF Real}
FuncPtr:FuncPtrType Absolute AltPress;
I:Byte;
{$ENDIF}
Begin
{$IFNDEF __Windows__}
{$IFDEF NoAsm}
PathDskSwp:='\';
DskSwp.Handle:=errHdl;
Vram.Memory:=$FFFFFFFF;
{$ELSE}
ASM
MOV PathDskSwp.Word,1+Byte('\')shl 8
MOV AX,0FFFFh
MOV DskSwp.Handle,AL
MOV Vram.Memory.Word,AX
MOV Vram.Memory.Word[2],AX
END;
{$ENDIF}
{$ENDIF}
{ Charge, d‚tecte et ‚limine les d‚tections du systŠme de base }
{$IFDEF Real}
StartUpChantal;
{$ELSE}
FillChar(StartUpBuf,SizeOf(StartUpBuf),0);
Case(Test8086)of
0:StartUpBuf.CPU:=cpu8086;
1:StartUpBuf.CPU:=cpu80286;
2:StartUpBuf.CPU:=cpui386;
3:StartUpBuf.CPU:=cpui486;
Else StartUpBuf.CPU:=cpui486;
End;
StartUpBuf.Up32Bits:=StartUpBuf.CPU>cpu80286;
StartUpBuf.HandleExist:=True;
Ver:=GetVersion;
StartUpBuf.GetDosVer:=LongRec(Ver).Hi;
StartUpBuf.WinLoVer:=Lo(Ver);
StartUpBuf.WinHiVer:=Hi(Ver);
SysFlags:=GetWinFlags;
StartUpBuf.Win:=winNo;
If(wfEnhanced)in(SysFlags)Then StartUpBuf.Win:=winEnhanced Else
If(wfStandard)in(SysFlags)Then StartUpBuf.Win:=winStandard Else
If(wfPMode)in(SysFlags)Then StartUpBuf.Win:=winReal;
Case GetKeyboardType(1)of
1: StartUpBuf.KbdModel:=kbXT;
3: StartUpBuf.KbdModel:=kbAT;
2,4: StartUpBuf.KbdModel:=kbMF;
Else StartUpBuf.KbdModel:=kbPC;
End;
StartUpBuf.CodePage:=GetKeyboardCodePage;
{$IFDEF Windows}
StrPCopy(@Curr,CurrencyString);
CurrStyle:=CurrencyFormat;
ThSep[0]:=ThousandSeparator;ThSep[1]:=#0;
DeSep[0]:=DecimalSeparator; DeSep[1]:=#0;
Digits:=CurrencyDecimals;
DtSep[0]:=DateSeparator; DtSep[1]:=#0;
Adele.Time:=Dostex.Military;
TmSep[0]:=TimeSeparator; TmSep[1]:=#0;
{$ENDIF}
{$ENDIF}
{$IFDEF Real}
If(X<>suFast)Then Begin
Mtx:=@mtxStartUp;
{ For I:=0to 14do Begin
Ptr:=NewBlock(Mem[Seg(Adele.Init):Mtx^[ind[I]].Ofs],Mtx^[ind[I]].Len+16);
If(Ptr=NIL)Then Begin
Halt(1);
End;
FuncPtr[I]:=Ptr;
End;}
For I:=0to 14do Begin
FuncPtr[I]:=NewBlock(Mem[Seg(Adele.Init):Mtx^[ind[I]].Ofs],Mtx^[ind[I]].Len+16);
End;
End;
{$ENDIF}
{$IFNDEF __Windows__}
SetIntVec(0,@Int00h); { Interruption de prise en charge de la division par 0 }
PrnOutput:=Get1LPT;
{$IFDEF MaxInt}
X:=X shr 4;
{$ENDIF}
{$IFNDEF NoInt09h}
GetIntVec(9,OldInt09h);{ IRQ1: Gestion br–te du clavier }
If(X<>suNoInt)Then SetIntVec(9,@Int09h);
{$ENDIF}
SetIntVec($1B,@IntBrk); { Interruption Break du BIOS }
SetIntVec($23,@IntBrk); { Interruption Break du DOS }
{$IFDEF MaxInt}
GetIntVec($28,OldInt28h);
If(X<>suNoInt)Then SetIntVec($28,@Int28h)
{$ENDIF}
{$IFDEF Real}
SetIntVec($9B,@Int9Bh);
SetIntVec($9C,@Int9Ch);
{$ENDIF}
{$ENDIF}
End;
{ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÜ
³ Proc‚dure InitMemManagers Û
ÀÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛ
Description
ÍÍÍÍÍÍÍÍÍÍÍ
Cette proc‚dure initialise les m‚canismes interne de la gestion des
ressource accessibles par les fonctions [_]X?????.
Remarque
ÍÍÍÍÍÍÍÍ
þ Supporte la m‚moire XMS pilot‚ par l'interruption 2Fh, EMS pilot‚
par l'interruption 67h, Vid‚o RAM pilot‚ par le VESA ou Super VGA
et le Disque pilot‚ par le DOS.
}
Procedure InitMemManagers;
Var
Dsk:Byte;
{$IFDEF Real}
Size:LongInt;
SizeW,NumPages:Word;
{$ENDIF}
Procedure Init(I:Byte;Size:LongInt);Begin
If Size<2Then Size:=0;
VSData[I].MaxAddr:=Size-1;
VSData[I].SizeMem:=Size;
VSData[I].FreeMem:=Size;
VSData[I].UsedAddr:=0;
ALInit(VSData[I].Ix)
End;
Begin
Dsk:=Path2Dsk(PathDskSwp)+1;
DskSwp.MaxAddr:=DiskFree(Dsk)-1;
VSExist[irmDsk]:=DskSwp.MaxAddr>0;
DeleteFile(PathDskSwp);
DskSwp.Handle:=FileCreate(PathDskSwp);
Init(irmDsk,DskSwp.MaxAddr+1);
{ EMS }
{$IFDEF Real}
Size:=0;
If Not(NoEms)Then Begin
If Not VSExist[irmEms]Then Begin
ASM
MOV AH,042h
CMP EmmExist,False
JE @Er
INT 067h
OR AH,AH
JNE @Er
MOV NumPages,BX
MOV AH,043h
INT 067h
OR AH,AH
JE @Ok
@Er:MOV DX,-1
@Ok:MOV EmmErr,AH
MOV Ems.Handle,DX
END;
If EmmErr=0Then Begin
Size:=LongInt(NumPages)*EmsSzPgDef;
Ems.MaxAddr:=Size-1;
VSExist[irmEms]:=True
End;
End;
End;
Init(irmEms,Size);
{$ELSE}
Init(irmEms,0);
{$ENDIF}
{ XMS }
{$IFDEF Real}
If Not VSExist[irmXms]Then Begin
If(XmsExist)Then Begin
ASM
MOV DI,Offset XMMCtrl
MOV AH,$08
PUSH BP
DB 0FFh,01Dh{CALL FAR[DI]}
POP BP
MOV XmsErr,BL
MOV SizeW,AX
MOV DX,AX
MOV DI,Offset XMMCtrl
MOV AH,$09
PUSH BP
DB 0FFh,01Dh{CALL FAR[DI]}
POP BP
CMP AL,True
JNE @@Err
MOV BL,0
MOV Xms.Handle,DX
MOV VSExist.Byte[irmXms],True
@@Err:
MOV XmsErr,BL
END;
If VSExist[irmXms]Then Xms.MaxAddr:=LongInt(SizeW)shl 10
End
End;
Init(irmXms,Xms.MaxAddr);
{$ELSE}
Init(irmXms,0);