Changeset 907 for trunk/dll/seeall.c
- Timestamp:
- Jan 6, 2008, 8:26:17 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/seeall.c
r897 r907 7 7 8 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2001, 200 7Steven H. Levine9 Copyright (c) 2001, 2008 Steven H. Levine 10 10 11 11 16 Oct 02 SHL Handle large partitions … … 36 36 ***********************************************************************/ 37 37 38 #include <stdlib.h> 39 #include <string.h> 40 #include <ctype.h> 41 #include <process.h> 42 38 43 #define INCL_DOS 39 44 #define INCL_DOSERRORS … … 41 46 #define INCL_GPI 42 47 #define INCL_LONGLONG 43 #include <os2.h> 44 45 #include <stdlib.h> 46 #include <stdio.h> 47 #include <string.h> 48 #include <ctype.h> 49 #include <process.h> 50 51 #include "fm3dll.h" 48 52 49 #include "fm3dlg.h" 53 50 #include "fm3str.h" 51 #include "pathutil.h" // BldQuotedFullPathName... 52 #include "makelist.h" // AddToList 53 #include "errutil.h" // Dos_Error... 54 #include "strutil.h" // GetPString 55 #include "fm3dll.h" 54 56 55 57 #pragma data_seg(DATA2) … … 262 264 { 263 265 CHAR **files = NULL, **list = (CHAR **) mp2, path[CCHMAXPATH]; 264 INT numfiles = 0, numalloc = 0, plen = 0; 266 UINT numfiles = 0, numalloc = 0; 267 INT plen = 0; 265 268 HWND hwndFrame = WinQueryWindowULong(hwnd, QWL_USER); 266 269 CHAR message[CCHMAXPATH * 2], wildname[CCHMAXPATH]; … … 1317 1320 ULONG z = 0; 1318 1321 CHAR **list = NULL; 1319 INT numfiles = 0;1320 INT numalloc = 0;1322 UINT numfiles = 0; 1323 UINT numalloc = 0; 1321 1324 INT error; 1322 1325 … … 1924 1927 if (!rc) { 1925 1928 do { 1926 #if 0 // 13 Aug 07 SHL fixme to be gone1927 {1928 static ULONG ulMaxCnt = 1;1929 if (ulFindCnt > ulMaxCnt) {1930 ulMaxCnt = ulFindCnt;1931 DbgMsg(pszSrcFile, __LINE__, "ulMaxCnt %u/%u", ulMaxCnt, ulFindMax);1932 }1933 }1934 #endif // fixme to be gone1935 1929 priority_normal(); 1936 1930 pffbFile = pffbArray;
Note:
See TracChangeset
for help on using the changeset viewer.