Changeset 531 for trunk/dll


Ignore:
Timestamp:
Nov 4, 2006, 10:06:24 PM (19 years ago)
Author:
root
Message:

Renames

Location:
trunk/dll
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/arccnrs.c

    r516 r531  
    3030  02 Aug 06 SHL Add logic to stop processing large archives
    3131  23 Aug 06 SHL Integrate John Small's switch list title logic
    32   02 Nov 06 SHL Comments
     32  03 Nov 06 SHL Renames
    3333
    3434***********************************************************************/
     
    18601860                  else if (li->type == IDM_PRINT) {
    18611861                    strcpy(li->targetpath,printer);
    1862                     if (_beginthread(PrintList,NULL,65536,(PVOID)li) != -1) {
     1862                    if (_beginthread(PrintListThread,NULL,65536,(PVOID)li) != -1) {
    18631863                      Runtime_Error(pszSrcFile, __LINE__, GetPString(IDS_COULDNTSTARTTHREADTEXT));
    18641864                      li = NULL;
  • trunk/dll/autoview.c

    r439 r531  
    1616  22 Jul 06 SHL Check more run time errors
    1717  15 Aug 06 SHL Use Runtime_Error more
     18  03 Nov 06 SHL Renames
    1819
    1920***********************************************************************/
     
    4041
    4142#pragma alloc_text(AUTOVIEW,AutoViewProc,CreateHexDump,AutoObjProc)
    42 #pragma alloc_text(AUTOVIEW2,MakeAutoWin,WriteEA,PutComments)
     43#pragma alloc_text(AUTOVIEW2,MakeAutoWinThread,WriteEA,PutComments)
    4344
    4445static HWND hwndAutoObj;
     
    626627
    627628
    628 VOID MakeAutoWin (VOID *args)
     629static VOID MakeAutoWinThread(VOID *args)
    629630{
    630631  HAB         hab2;
     
    687688
    688689        if (!hwndAutoObj) {
    689           if (_beginthread(MakeAutoWin,NULL,65536,(PVOID)hwnd) == -1) {
     690          if (_beginthread(MakeAutoWinThread,NULL,65536,(PVOID)hwnd) == -1) {
    690691            Runtime_Error(pszSrcFile, __LINE__, GetPString(IDS_COULDNTSTARTTHREADTEXT));
    691692            PostMsg(hwnd,UM_CLOSE,MPVOID,MPVOID);
  • trunk/dll/objcnr.c

    r517 r531  
    1313  01 Sep 06 SHL Do not complain for normal cancel
    1414  19 Oct 06 SHL Correct . and .. detect
     15  03 Nov 06 SHL Renames
    1516
    1617***********************************************************************/
     
    4849static HWND objcnrwnd;
    4950
    50 #pragma alloc_text(OBJCNR,ProcessDir,FillCnrs,ObjCnrDlgProc)
     51#pragma alloc_text(OBJCNR,ProcessDir,FillCnrsThread,ObjCnrDlgProc)
    5152
    5253static VOID ProcessDir(HWND hwndCnr,CHAR *filename,PCNRITEM pciParent,
     
    199200
    200201
    201 static VOID FillCnrs (VOID *args)
     202static VOID FillCnrsThread(VOID *args)
    202203{
    203204  HAB           hab;
     
    267268        dirsize->filename = data->dirname;
    268269        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) {
    270271          Runtime_Error(pszSrcFile, __LINE__, GetPString(IDS_COULDNTSTARTTHREADTEXT));
    271272          free(dirsize);
Note: See TracChangeset for help on using the changeset viewer.