Changeset 531
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/arccnrs.c
r516 r531 30 30 02 Aug 06 SHL Add logic to stop processing large archives 31 31 23 Aug 06 SHL Integrate John Small's switch list title logic 32 0 2 Nov 06 SHL Comments32 03 Nov 06 SHL Renames 33 33 34 34 ***********************************************************************/ … … 1860 1860 else if (li->type == IDM_PRINT) { 1861 1861 strcpy(li->targetpath,printer); 1862 if (_beginthread(PrintList ,NULL,65536,(PVOID)li) != -1) {1862 if (_beginthread(PrintListThread,NULL,65536,(PVOID)li) != -1) { 1863 1863 Runtime_Error(pszSrcFile, __LINE__, GetPString(IDS_COULDNTSTARTTHREADTEXT)); 1864 1864 li = NULL; -
trunk/dll/autoview.c
r439 r531 16 16 22 Jul 06 SHL Check more run time errors 17 17 15 Aug 06 SHL Use Runtime_Error more 18 03 Nov 06 SHL Renames 18 19 19 20 ***********************************************************************/ … … 40 41 41 42 #pragma alloc_text(AUTOVIEW,AutoViewProc,CreateHexDump,AutoObjProc) 42 #pragma alloc_text(AUTOVIEW2,MakeAutoWin ,WriteEA,PutComments)43 #pragma alloc_text(AUTOVIEW2,MakeAutoWinThread,WriteEA,PutComments) 43 44 44 45 static HWND hwndAutoObj; … … 626 627 627 628 628 VOID MakeAutoWin(VOID *args)629 static VOID MakeAutoWinThread(VOID *args) 629 630 { 630 631 HAB hab2; … … 687 688 688 689 if (!hwndAutoObj) { 689 if (_beginthread(MakeAutoWin ,NULL,65536,(PVOID)hwnd) == -1) {690 if (_beginthread(MakeAutoWinThread,NULL,65536,(PVOID)hwnd) == -1) { 690 691 Runtime_Error(pszSrcFile, __LINE__, GetPString(IDS_COULDNTSTARTTHREADTEXT)); 691 692 PostMsg(hwnd,UM_CLOSE,MPVOID,MPVOID); -
trunk/dll/objcnr.c
r517 r531 13 13 01 Sep 06 SHL Do not complain for normal cancel 14 14 19 Oct 06 SHL Correct . and .. detect 15 03 Nov 06 SHL Renames 15 16 16 17 ***********************************************************************/ … … 48 49 static HWND objcnrwnd; 49 50 50 #pragma alloc_text(OBJCNR,ProcessDir,FillCnrs ,ObjCnrDlgProc)51 #pragma alloc_text(OBJCNR,ProcessDir,FillCnrsThread,ObjCnrDlgProc) 51 52 52 53 static VOID ProcessDir(HWND hwndCnr,CHAR *filename,PCNRITEM pciParent, … … 199 200 200 201 201 static VOID FillCnrs (VOID *args)202 static VOID FillCnrsThread(VOID *args) 202 203 { 203 204 HAB hab; … … 267 268 dirsize->filename = data->dirname; 268 269 dirsize->hwndCnr = WinWindowFromID(hwnd,OBJCNR_CNR); 269 if (_beginthread(FillCnrs ,NULL,65536 * 8,(PVOID)dirsize) == -1) {270 if (_beginthread(FillCnrsThread,NULL,65536 * 8,(PVOID)dirsize) == -1) { 270 271 Runtime_Error(pszSrcFile, __LINE__, GetPString(IDS_COULDNTSTARTTHREADTEXT)); 271 272 free(dirsize);
Note:
See TracChangeset
for help on using the changeset viewer.
