Changeset 1335 for trunk/dll/viewinf.c
- Timestamp:
- Dec 13, 2008, 12:49:02 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/viewinf.c
r1228 r1335 15 15 20 Aug 07 GKY Move #pragma alloc_text to end for OpenWatcom compat 16 16 19 Jul 08 GKY Replace save_dir2(dir) with pFM2SaveDirectory and use BldFullPathName 17 10 Dec 08 SHL Integrate exception handler support 17 18 18 19 ***********************************************************************/ … … 23 24 #include <string.h> 24 25 #include <share.h> 25 #include <process.h> // _beginthread26 // #include <process.h> // _beginthread 26 27 27 28 #define INCL_DOS … … 47 48 #include "wrappers.h" // xfopen 48 49 #include "fortify.h" 50 #include "excputil.h" // xbeginthread 49 51 50 52 #pragma data_seg(DATA1) … … 283 285 if (help) 284 286 d->help = 1; 285 if (_beginthread(FillListboxThread, NULL, 65536, (PVOID) d) == -1) { 286 Runtime_Error(pszSrcFile, __LINE__, 287 GetPString(IDS_COULDNTSTARTTHREADTEXT)); 287 if (xbeginthread(FillListboxThread, 288 65536, 289 d, 290 pszSrcFile, 291 __LINE__) == -1) 292 { 288 293 free(d); 289 294 WinDismissDlg(hwnd, 0);
Note:
See TracChangeset
for help on using the changeset viewer.