Changeset 907 for trunk/dll/dirsize.c
- Timestamp:
- Jan 6, 2008, 8:26:17 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/dirsize.c
r850 r907 34 34 ***********************************************************************/ 35 35 36 #define INCL_DOS37 #define INCL_WIN38 #define INCL_GPI39 #define INCL_LONGLONG40 #define INCL_DOSERRORS41 #include <os2.h>42 43 #include <stdio.h>44 36 #include <stdlib.h> 45 37 #include <string.h> … … 47 39 #include <process.h> // _beginthread 48 40 49 #include "fm3dll.h" 41 #define INCL_DOS 42 #define INCL_DOSERRORS 43 #define INCL_WIN 44 #define INCL_GPI 45 #define INCL_LONGLONG 46 50 47 #include "fm3dlg.h" 51 48 #include "fm3str.h" 49 #include "dircnrs.h" 50 #include "errutil.h" // Dos_Error... 51 #include "strutil.h" // GetPString 52 #include "fm3dll.h" 52 53 53 54 typedef struct … … 223 224 while (!rc) { 224 225 225 #if 0 // 13 Aug 07 SHL fixme to be gone226 {227 static ULONG ulMaxCnt = 1;228 if (ulFindCnt > ulMaxCnt) {229 ulMaxCnt = ulFindCnt;230 DbgMsg(pszSrcFile, __LINE__, "ulMaxCnt %u/%u", ulMaxCnt, FilesToGet);231 }232 }233 #endif234 235 226 priority_normal(); 236 227 pffbFile = pffbArray; … … 258 249 break; 259 250 pffbFile = (PFILEFINDBUF4L)((PBYTE)pffbFile + pffbFile->oNextEntryOffset); 260 261 #if 0 // 13 Aug 07 SHL fixme to be gone262 {263 static ULONG ulMaxBytes = 65535;264 ULONG ul = (PBYTE)pffbFile - (PBYTE)pffbArray;265 if (ul > ulMaxBytes) {266 ulMaxBytes = ul;267 DbgMsg(pszSrcFile, __LINE__, "ulFindCnt %u/%u ulMaxBytes %u/%u",268 ulFindCnt, FilesToGet, ulMaxBytes, ulBufBytes);269 }270 }271 #endif272 251 273 252 } // for matches
Note:
See TracChangeset
for help on using the changeset viewer.