-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLOADPEX.CPP
More file actions
2402 lines (1965 loc) · 44.5 KB
/
LOADPEX.CPP
File metadata and controls
2402 lines (1965 loc) · 44.5 KB
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
#define Use_TagList
#define Use_LinkedList
#define Use_Handlers
#define Use_MsgBase
#include <ctype.h>
#include <time.h>
#include <io.h>
#include <fcntl.h>
#include <dir.h>
#include <dos.h>
#include <process.h>
#include <stdio.h>
#include <stdlib.h>
#include <alloc.h>
#include <stdarg.h>
#include <string.h>
#include <tswin.hpp>
#include <msdos.hpp>
#include "proboard.hpp"
#include "fossil.hpp"
static long _cdecl
hook_l_mul(long,long v1,long v2)
{
return v1*v2;
}
static long _cdecl
hook_l_div(long,long v1,long v2)
{
return v1/v2;
}
static long _cdecl
hook_l_mod(long,long v1,long v2)
{
return v1%v2;
}
static unsigned long _cdecl
hook_ul_div(long,unsigned long v1,unsigned long v2)
{
return v1/v2;
}
static unsigned long _cdecl
hook_ul_mod(long,unsigned long v1,unsigned long v2)
{
return v1%v2;
}
static long _cdecl
hook_l_shl(long,long v,unsigned shift)
{
return v << shift;
}
static long _cdecl
hook_l_shr(long,long v,unsigned shift)
{
return v >> shift;
}
static unsigned long _cdecl
hook_ul_shl(long,unsigned long v,unsigned shift)
{
return v << shift;
}
static unsigned long _cdecl
hook_ul_shr(long,unsigned long v,unsigned shift)
{
return v >> shift;
}
static FILE * _cdecl
hook_fopen(long,char *a,char *b)
{
bool shared = TRUE;
if(strchr(b,'*'))
{
*strchr(b,'*') = '\0';
shared = FALSE;
}
FILE *fp;
if(shared) fp = _fsopen(a,b,0x40);
else fp = fopen(a,b);
return fp;
}
static FILE * _cdecl
hook_freopen(long,char *a,char *b,FILE *c)
{
return freopen(a,b,c);
}
static int _cdecl
hook_fseek(long,FILE *a,long b,int c)
{
return fseek(a,b,c);
}
static long _cdecl
hook_ftell(long,FILE *a)
{
return ftell(a);
}
static char * _cdecl
hook_fgets(long,char *a,int b,FILE *c)
{
return fgets(a,b,c);
}
static int _cdecl
hook_fgetc(long,FILE *a)
{
return fgetc(a);
}
static int _cdecl
hook_fflush(long,FILE *a)
{
return fflush(a);
}
static int _cdecl
hook_fclose(long,FILE *a)
{
return fclose(a);
}
static int _cdecl
hook_fputs(long,char *a,FILE *b)
{
return fputs(a,b);
}
static int _cdecl
hook_getc(long,FILE *a)
{
return getc(a);
}
static int _cdecl
hook_getchar()
{
return io.wait();
}
static char * _cdecl
hook_gets(long,char *a)
{
io.read(a,79,READMODE_NOFIELD);
return a;
}
static int _cdecl
hook_fputc(long,int a,FILE *b)
{
return fputc(a,b);
}
static int _cdecl
hook_putc(long,int a,FILE * b)
{
return putc(a,b);
}
static int _cdecl
hook_putchar(long,int a)
{
io << char(a) << char(255);
return a;
}
static int _cdecl
hook_puts(long,char *a)
{
io << a << "\n\xFF";
return 1;
}
static size_t _cdecl
hook_fread(long,void *a,size_t b,size_t c,FILE *d)
{
size_t r = fread(a,b,c,d);
return r;
}
static size_t _cdecl
hook_fwrite(long,void *a,size_t b,size_t c,FILE *d)
{
return fwrite(a,b,c,d);
}
static int _cdecl
hook_printf(long,char *a ...)
{
va_list x;
va_start(x,a);
char s[256];
int l=vsprintf(s,a,x);
if(l>0)
io << s << char(0xFF);
return l;
}
static int _cdecl
hook_fprintf(long,FILE *a,char *b ...)
{
va_list x;
va_start(x,b);
return vfprintf(a,b,x);
}
static int _cdecl
hook_vfprintf(long,FILE *a,char *b,va_list c)
{
return vfprintf(a,b,c);
}
static int _cdecl
hook_vprintf(long,char *a,va_list b)
{
char s[256];
int l = vsprintf(s,a,b);
if(l>0)
io << s << char(0xFF);
return l;
}
static int _cdecl
hook_sprintf(long,char *a,char *b ...)
{
va_list x;
va_start(x,b);
return vsprintf(a,b,x);
}
static int _cdecl
hook_vsprintf(long,char *a,char *b,va_list c)
{
return vsprintf(a,b,c);
}
static void _cdecl
hook_setbuf(long,FILE *a,char *b)
{
setbuf(a,b);
}
static int _cdecl
hook_setvbuf(long,FILE *a,char *b,int c,size_t d)
{
return setvbuf(a,b,c,d);
}
static int _cdecl
hook_remove(long,char *a)
{
return remove(a);
}
static int _cdecl
hook_rename(long,char *a,char *b)
{
return rename(a,b);
}
static void _cdecl
hook_rewind(long,FILE *a)
{
rewind(a);
}
static void _cdecl
hook_clearerr(long,FILE *a)
{
clearerr(a);
}
static int _cdecl
hook_feof(long,FILE *a)
{
return feof(a);
}
static int _cdecl
hook_isalnum(long,int a)
{
return isalnum(a);
}
static int _cdecl
hook_isalpha(long,int a)
{
return isalpha(a);
}
static int _cdecl
hook_iscntrl(long,int a)
{
return iscntrl(a);
}
static int _cdecl
hook_isdigit(long,int a)
{
return isdigit(a);
}
static int _cdecl
hook_isgraph(long,int a)
{
return isgraph(a);
}
static int _cdecl
hook_islower(long,int a)
{
return islower(a);
}
static int _cdecl
hook_isprint(long,int a)
{
return isprint(a);
}
static int _cdecl
hook_ispunct(long,int a)
{
return ispunct(a);
}
static int _cdecl
hook_isspace(long,int a)
{
return isspace(a);
}
static int _cdecl
hook_isupper(long,int a)
{
return isupper(a);
}
static int _cdecl
hook_isxdigit(long,int a)
{
return isxdigit(a);
}
static int _cdecl
hook_toupper(long,int a)
{
return toupper(a);
}
static int _cdecl
hook_tolower(long,int a)
{
return tolower(a);
}
static int _cdecl
hook_int86(long,int a,union REGS *b,union REGS *c)
{
return int86(a,b,c);
}
static int _cdecl
hook_int86x(long,int a,union REGS *b,union REGS *c,struct SREGS *d)
{
return int86x(a,b,c,d);
}
static int _cdecl
hook_intdos(long,union REGS *a,union REGS *b)
{
return intdos(a,b);
}
static int _cdecl
hook_intdosx(long,union REGS *a,union REGS *b,struct SREGS *c)
{
return intdosx(a,b,c);
}
static int _cdecl
hook_dos_findfirst(long,char *a, unsigned b, struct find_t *c)
{
return _dos_findfirst(a,b,c);
}
static int _cdecl
hook_dos_findnext(long,struct find_t *a)
{
return _dos_findnext(a);
}
static int _cdecl
hook_read(long,int a,void *b,unsigned c)
{
return msdos_read(a,b,c);
}
static int _cdecl
hook_write(long,int a,void *b,unsigned c)
{
return msdos_write(a,b,c);
}
static int _cdecl
hook_open(long,char *a,int b)
{
int fh = msdos_open(a,b);
return fh;
}
static int _cdecl
hook_creat(long,char *a,int b)
{
return creat(a,b);
}
static void _cdecl
hook_close(long,int a)
{
msdos_close(a);
}
static int _cdecl
hook_unlink(long,char *a)
{
return unlink(a);
}
static int _cdecl
hook_chsize(long,int a,long b)
{
return chsize(a,b);
}
static int _cdecl
hook_dup(long,int a)
{
return dup(a);
}
static int _cdecl
hook_dup2(long,int a,int b)
{
return dup2(a,b);
}
static long _cdecl
hook_lseek(long,int a,long b,int c)
{
return lseek(a,b,c);
}
static int _cdecl
hook_access(long,char *a,int b)
{
return access(a,b);
}
static long _cdecl
hook_filesize(long,char *)
{
return -1;
}
static long _cdecl
hook_filelength(long,int a)
{
return filelength(a);
}
static int _cdecl
hook_isatty(long,int a)
{
return isatty(a);
}
static int _cdecl
hook_mkdir(long,char *a)
{
return mkdir(a);
}
static int _cdecl
hook_chdir(long,char *a)
{
return chdir(a);
}
static int _cdecl
hook_rmdir(long,char *a)
{
return rmdir(a);
}
static int _cdecl
hook_atoi(long,char *a)
{
return atoi(a);
}
static long _cdecl
hook_atol(long,char *a)
{
return atol(a);
}
static long _cdecl
hook_strtol(long,char *a,char **b,int c)
{
return strtol(a,b,c);
}
static int _cdecl
hook_rand(long)
{
return rand();
}
static void _cdecl
hook_srand(long,unsigned a)
{
srand(a);
}
static void * _cdecl
hook_calloc(long,size_t a,size_t b)
{
return calloc(a,b);
}
static void _cdecl
hook_free(long,void *a)
{
free(a);
}
static void * _cdecl
hook_malloc(long,size_t a)
{
return malloc(a);
}
static void * _cdecl
hook_realloc(long,void *a,size_t b)
{
return realloc(a,b);
}
static char * _cdecl
hook_getenv(long,char *a)
{
return getenv(a);
}
static int cdecl
hook_putenv(long,char *a)
{
return putenv(a);
}
static int _cdecl
hook_abs(long,int a)
{
return abs(a);
}
static long _cdecl
hook_labs(long,long a)
{
return labs(a);
}
static void * _cdecl
hook_memcpy(long,void *a,void *b,size_t c)
{
return memcpy(a,b,c);
}
static void * _cdecl
hook_memmove(long,void *a,void *b,size_t c)
{
return memmove(a,b,c);
}
static char * _cdecl
hook_strcpy(long,char *a,char *b)
{
return strcpy(a,b);
}
static char * _cdecl
hook_strncpy(long,char *a,char *b,size_t c)
{
return strncpy(a,b,c);
}
static char * _cdecl
hook_strcat(long,char *a,char *b)
{
return strcat(a,b);
}
static char * _cdecl
hook_strncat(long,char *a,char *b,size_t c)
{
return strncat(a,b,c);
}
static int _cdecl
hook_memcmp(long,void *a,void *b,size_t c)
{
return memcmp(a,b,c);
}
static int _cdecl
hook_strcmp(long,char *a,char *b)
{
return strcmp(a,b);
}
static int _cdecl
hook_strncmp(long,char *a,char *b,size_t c)
{
return strncmp(a,b,c);
}
static void * _cdecl
hook_memchr(long,void *a,int b,size_t c)
{
return memchr(a,b,c);
}
static char * _cdecl
hook_strchr(long,char *a,int b)
{
return strchr(a,b);
}
static size_t _cdecl
hook_strcspn(long,char *a,char *b)
{
return strcspn(a,b);
}
static char * _cdecl
hook_strpbrk(long,char *a,char *b)
{
return strpbrk(a,b);
}
static char * _cdecl
hook_strrchr(long,char *a,int b)
{
return strrchr(a,b);
}
static size_t _cdecl
hook_strspn(long,char *a,char *b)
{
return strspn(a,b);
}
static char * _cdecl
hook_strstr(long,char *a,char *b)
{
return strstr(a,b);
}
static char * _cdecl
hook_strtok(long,char *a,char *b)
{
return strtok(a,b);
}
static void * _cdecl
hook_memset(long,void *a,int b,size_t c)
{
return memset(a,b,c);
}
static size_t _cdecl
hook_strlen(long,char *a)
{
return strlen(a);
}
static int _cdecl
hook_memicmp(long,void *a,void *b,size_t c)
{
return memicmp(a,b,c);
}
static char * _cdecl
hook_stpcpy(long,char *a,char *b)
{
return stpcpy(a,b);
}
static int _cdecl
hook_strcmpl(long,char *a,char *b)
{
return strcmpl(a,b);
}
static int _cdecl
hook_strnicmp(long,char *a, char *b, size_t c)
{
return strnicmp(a,b,c);
}
static char * _cdecl
hook_strdup(long,char *a)
{
return strdup(a);
}
static char * _cdecl
hook_strlwr(long,char *a)
{
return strlwr(a);
}
static char * _cdecl
hook_strupr(long,char *a)
{
return strupr(a);
}
static char * _cdecl
hook_strnset(long,char *a,int b,size_t c)
{
return strnset(a,b,c);
}
static char * _cdecl
hook_strrev(long,char *a)
{
return strrev(a);
}
static char * _cdecl
hook_strset(long,char *a,int b)
{
return strset(a,b);
}
static void _cdecl
hook_swab(long,char *a,char *b,size_t c)
{
swab(a,b,c);
}
static clock_t _cdecl
hook_clock(long)
{
return clock();
}
static time_t _cdecl
hook_time(long,time_t *a)
{
return time(a);
}
static time_t _cdecl
hook_mktime(long,struct tm *a)
{
return mktime(a);
}
static char * _cdecl
hook_asctime(long,struct tm *a)
{
return asctime(a);
}
static char * _cdecl
hook_ctime(long,time_t *a)
{
return ctime(a);
}
static struct tm * _cdecl
hook_localtime(long,time_t *a)
{
return localtime(a);
}
static struct tm * _cdecl
hook_gmtime(long,time_t *a)
{
return gmtime(a);
}
static size_t _cdecl
hook_strftime(long,char *a,size_t b,char *c,struct tm *d)
{
return strftime(a,b,c,d);
}
static void _cdecl
hook_sleep(long,time_t a)
{
sleep(int(a));
}
static void _cdecl
hook_usleep(long,unsigned long a)
{
#ifdef __ZTC
usleep(a);
#else
msleep(int(a/1000));
#endif
}
static void _cdecl
hook_msleep(long,unsigned long a)
{
msleep(int(a));
}
static long _cdecl
hook_MemAvail()
{
return farcoreleft();
}
static char * _cdecl
hook_form(long,char *s ...)
{
static int index = 0;
static char buffer[1024];
va_list v;
if(index >= 512) index = 0;
va_start(v,s);
char *ret = &buffer[index];
index += vsprintf(&buffer[index],s,v) + 1;
if(index >= 1024) _exit(EXIT_FAILURE);
return ret;
}
static void _cdecl
hook_SetColor(long,char color)
{
char s[2] = { 0,0 };
s[0] = color;
io << s << char(0xFF);
}
static void _cdecl
hook_MenuFunction(long,int func,char *data)
{
(*(menufunctions[func]))(data);
}
static char _cdecl
hook_WaitKey()
{
return io.wait();
}
static char _cdecl
hook_WaitKeys(long,char *s)
{
return io.wait(s);
}
static void _cdecl
hook_Input(long,char *s,int len,int method)
{
io.read(s,len,method);
}
static void _cdecl
hook_HangUp(long)
{
io.flush();
exit_proboard();
}
static void _cdecl
hook_Log(long,int loglevel,char *string ...)
{
char s[100];
va_list x;
va_start(x,string);
vsprintf(s,string,x);
LOG(loglevel,s);
}
static int _cdecl
hook_PostMessage(long,char *from,char *to,char *subj,int area,bool pvt)
{
return (int)post_message(from,to,subj,area,pvt);
}
static int _cdecl
hook_PostNetmail(long,char *from,char *to,char *subj,int area,unsigned *address,bool attach,bool crash,bool kill)
{
return (int)post_netmail_message(from,to,subj,area,address[0],address[1],address[2],address[3],crash,attach,kill);
}
static bool _cdecl
hook_ReadMsgArea(long,int areanum,_MsgArea *ma)
{
MsgArea local_area;
memcpy(&local_area , ma , sizeof(_MsgArea));
bool r = local_area.read(areanum);
memcpy(ma , &local_area , sizeof(_MsgArea));
return r;
}
static int _cdecl
hook_NumMsgAreas(long)
{
return MsgArea::highAreaNum();
}
static int _cdecl
hook_ReadFileArea(long,int area,FileArea *fa)
{
return (fa->read(area)) ? 0 : (-1);
}
static int _cdecl
hook_NumFileAreas(long)
{
return FileArea::highAreaNum();
}
static void _cdecl
hook_MsgEd()
{
edit_message();
}
static void _cdecl
hook_AddTime(long,int minutes)
{
int i;
if(minutes<0) for(i=0;i<-minutes;i++) timer.decrease();
else for(i=0;i< minutes;i++) timer.increase();
}
static int _cdecl
hook_TimeLeft(long)
{
return timer.left();
}
static int _cdecl
hook_TimeOnline(long)