Changeset 211
- Timestamp:
- Mar 11, 2017, 2:48:09 PM (8 years ago)
- Location:
- trunk/src
- Files:
-
- 1 added
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/doc/message.txt ¶
r188 r211 302 302 LOG02436|2436 /|%s is fragmented |{} 303 303 LOG02437|2437 /|CHKDSK was unable to recover a lost chain. SYS%4.4u |{} 304 LOG02438|2438 /| | |Directory of %s (%lu clusters) | | |{} 305 LOG02439|2439 /|This has been corrected |{} 306 LOG02440|2440 /|%lu lost clusters found in %lu chains |{} 307 LOG02441|2441 /|Warning! Not enough memory is available for CHKDSK|to recover all lost data. |{} 308 LOG02442|2442 /|The system detected lost data on disk %s. |{} 309 LOG02443|2443 /|CHKDSK placed recovered data in file %s. |{} 310 LOG02444|2444 /|CHKDSK corrected an allocation error for the file %s. |{} 304 311 -
TabularUnified trunk/src/makefile.mk ¶
r200 r211 27 27 util = & 28 28 cachef32.exe & 29 diskdump.exe & 30 diskinfo.exe & 29 f32parts.exe & 31 30 f32mon.exe & 32 31 f32stat.exe & … … 55 54 sym = & 56 55 boot\fat32.sym dll\ufat32.sym & 57 cachef32.sym diskdump.sym diskinfo.sym f32mon.sym &56 cachef32.sym f32parts.sym f32mon.sym & 58 57 f32stat.sym f32chk.sym fat32chk.sym fat32fmt.sym fat32sys.sym 59 58 … … 70 69 $(p)os2\dll\ufat32.dll $(p)os2\dll\ufat32.sym & 71 70 $(p)os2\cachef32.exe $(p)os2\cachef32.sym & 72 $(p)os2\diskdump.exe $(p)os2\diskdump.sym & 73 $(p)os2\diskinfo.exe $(p)os2\diskinfo.sym & 71 $(p)os2\f32parts.exe $(p)os2\f32parts.sym & 74 72 $(p)os2\f32mon.exe $(p)os2\f32mon.sym & 75 73 $(p)os2\f32stat.exe $(p)os2\f32stat.sym & … … 122 120 123 121 .SUFFIXES: 124 .SUFFIXES: .flt .ifs .dll .exe .lib .lnk .ols .obc .obd .obj .cpp .c . h .asm .sym .map .wmp .inf .ipf .bmp122 .SUFFIXES: .flt .ifs .dll .exe .lib .lnk .ols .obc .obd .obj .cpp .c .c16 .h .asm .sym .map .wmp .inf .ipf .bmp 125 123 126 124 all: $(BLDROOT)\bld.flg $(PROJ_BLD)\makefile.wcc dirs copy targets & -
TabularUnified trunk/src/ufat32/chkdsk.c ¶
r207 r211 166 166 case 'H': 167 167 case '?': 168 // show help 169 usage(rgArgv[0]); 170 exit(0); 168 171 break; 169 172 default : … … 461 464 } 462 465 463 show_message("\n%1 bytes total disk space î\n", 0, 1361, 1,466 show_message("\n%1 bytes total disk space.\n", 0, 1361, 1, 464 467 TYPE_DOUBLE, (DOUBLE)pCD->ulTotalClusters * pCD->ulClusterSize); 465 468 if (pCD->ulBadClusters) -
TabularUnified trunk/src/ufat32/fatfunc.c ¶
r206 r211 1961 1961 if (pszOldFile) 1962 1962 { 1963 if (pszFile) 1964 strcpy(pszOldFileName, pszOldFile); 1963 strcpy(pszOldFileName, pszOldFile); 1965 1964 1966 1965 ulOldCluster = FindPathCluster(pCD, ulDirCluster, pszOldFileName, &OldOldEntry, NULL); -
TabularUnified trunk/src/ufat32/makefile.wcc ¶
r207 r211 88 88 sys 89 89 @%append $[*.lnk IMPORT & 90 DOSSETSIGHANDLER DOSCALLS.14 90 DOSSETSIGHANDLER DOSCALLS.14, & 91 DOSSETVEC DOSCALLS.89 91 92 @%append $[*.lnk LIBPATH $(%WATCOM)\lib386;$(%WATCOM)\lib386\os2 92 93 @%append $[*.lnk LIB os2386,clib3s,math3s -
TabularUnified trunk/src/ufat32/os2.c ¶
r205 r211 792 792 { 793 793 double arg = va_arg(va, double); 794 printf(",% lf", arg);794 printf(",%12.0lf", arg); 795 795 } 796 796 else if (usType == TYPE_STRING) -
TabularUnified trunk/src/ufat32/ufat32.c ¶
r207 r211 11 11 int sys(int argc, char *argv[], char *envp[]); 12 12 13 int show_message (char *pszMsg, unsigned short usLogMsg, unsigned short usMsg, unsigned short usNumFields, ...);14 13 void cleanup(void); 15 14 … … 169 168 } 170 169 171 // the 16-bit exceptionhandler170 // the 16-bit signal handler 172 171 void _Far16 _Pascal _loadds HANDLER(USHORT x, USHORT iSignal) 173 172 { … … 178 177 exit(1); 179 178 } 179 180 // 16-bit exception handler 181 int _Far16 _Pascal _loadds HANDLER2(void) 182 { 183 printf("\n\nException has caught\n"); 184 185 // remount disk for changes to take effect 186 cleanup(); 187 exit(1); 188 189 return 0; 190 } -
TabularUnified trunk/src/ufat32/win32.c ¶
r205 r211 757 757 { 758 758 double arg = va_arg(va, double); 759 printf(",% lf", arg);759 printf(",%%12.0lf", arg); 760 760 } 761 761 else if (usType == TYPE_STRING) -
TabularUnified trunk/src/util/makefile.wcc ¶
r160 r211 15 15 OBJS5=$(PROJ_BLD)\diskdump.obj 16 16 17 TARGETS=$(BINROOT)\os2\f32stat.exe $(BINROOT)\os2\f32mon.exe $(BINROOT)\os2\ diskinfo.exe &17 TARGETS=$(BINROOT)\os2\f32stat.exe $(BINROOT)\os2\f32mon.exe $(BINROOT)\os2\f32parts.exe & 18 18 $(BINROOT)\os2\cachef32.exe $(BINROOT)\os2\diskdump.exe $(BINROOT)\os2\diskdump.sym $(BINROOT)\os2\cachef32.sym & 19 $(BINROOT)\os2\ diskinfo.sym $(BINROOT)\os2\f32mon.sym $(BINROOT)\os2\f32stat.sym19 $(BINROOT)\os2\f32parts.sym $(BINROOT)\os2\f32mon.sym $(BINROOT)\os2\f32stat.sym 20 20 DIRS=..\include 21 21 22 22 SYS=os2v2 23 23 24 #diskinf0.c: fat32def.hfat32.h25 #diskinf1.c: fat32def.hfat32.h26 #diskinf2.c: fat32def.hfat32.h27 #monitor.c: fat32def.h28 #cachef32.c: fat32def.h29 #f32stat.c: fat32def.h24 #diskinf0.c: ..\include\fat32def.h ..\include\fat32.h 25 #diskinf1.c: ..\include\fat32def.h ..\include\fat32.h 26 #diskinf2.c: ..\include\fat32def.h ..\include\fat32.h 27 #monitor.c: ..\include\fat32def.h 28 #cachef32.c: ..\include\fat32def.h 29 #f32stat.c: ..\include\fat32def.h 30 30 31 31 $(BINROOT)\os2\f32stat.exe: … … 33 33 $(BINROOT)\os2\f32mon.exe: 34 34 35 $(BINROOT)\os2\ diskinfo.exe:35 $(BINROOT)\os2\f32parts.exe: 36 36 37 37 $(BINROOT)\os2\cachef32.exe: … … 43 43 $(BINROOT)\os2\cachef32.sym: 44 44 45 $(BINROOT)\os2\ diskinfo.sym:45 $(BINROOT)\os2\f32parts.sym: 46 46 47 47 $(BINROOT)\os2\f32mon.sym: … … 61 61 @for %e in ($<) do @%append $^@ FILE %e 62 62 63 $(PROJ_BLD)\ diskinfo.ols: $(OBJS4)63 $(PROJ_BLD)\f32parts.ols: $(OBJS4) 64 64 @%create $^@ 65 65 @for %e in ($<) do @%append $^@ FILE %e
Note:
See TracChangeset
for help on using the changeset viewer.