Changeset 1335 for trunk/dll/undel.c
- Timestamp:
- Dec 13, 2008, 12:49:02 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/dll/undel.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/undel.c
r1227 r1335 5 5 6 6 Copyright (c) 1993-98 M. Kimes 7 Copyright (c) 2004, 200 6Steven H. Levine7 Copyright (c) 2004, 2008 Steven H. Levine 8 8 9 9 01 Aug 04 SHL Rework lstrip/rstrip usage … … 16 16 29 Feb 08 GKY Use xfree where appropriate 17 17 16 JUL 08 GKY Use TMP directory for temp files 18 10 Dec 08 SHL Integrate exception handler support 18 19 19 20 ***********************************************************************/ … … 22 23 #include <string.h> 23 24 #include <ctype.h> 24 #include <process.h> // _beginthread25 // #include <process.h> // _beginthread 25 26 26 27 #define INCL_DOS … … 37 38 #include "errutil.h" // Dos_Error... 38 39 #include "strutil.h" // GetPString 39 #include "pathutil.h" // BldFullPathName40 #include "pathutil.h" // BldFullPathName 40 41 #include "walkem.h" // FillPathListBox 41 42 #include "common.h" // DecrThreadUsage, IncrThreadUsage … … 47 48 #include "systemf.h" // runemf2 48 49 #include "fortify.h" 50 #include "excputil.h" // xbeginthread 49 51 50 52 #pragma data_seg(DATA2) … … 239 241 GetPString(IDS_UNDELETETITLETEXT), toupper(*undelinfo->path)); 240 242 WinSetWindowText(hwnd, s); 241 if (_beginthread(FillUndelListThread, NULL, 65536, (PVOID) undelinfo) 242 == -1) { 243 Runtime_Error(pszSrcFile, __LINE__, 244 GetPString(IDS_COULDNTSTARTTHREADTEXT)); 243 if (xbeginthread(FillUndelListThread, 244 65536, 245 undelinfo, 246 pszSrcFile, 247 __LINE__) == -1) 248 { 245 249 free(undelinfo); 246 250 listdone = TRUE;
Note:
See TracChangeset
for help on using the changeset viewer.
