Changeset 199 for trunk/dll/comp.c


Ignore:
Timestamp:
Jun 8, 2005, 7:54:16 AM (20 years ago)
Author:
root
Message:

Drop unused

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/dll/comp.c

    r157 r199  
    1515  24 May 05 SHL Rework for CNRITEM.szSubject
    1616  25 May 05 SHL Rework with ULONGLONG
     17  06 Jun 05 SHL Drop unused
    1718
    1819***********************************************************************/
     
    3536#include "fm3str.h"
    3637
    37 #pragma alloc_text(COMPAREDIR,FillCnrs,FillDirList,CompNames,CompNames2)
     38#pragma alloc_text(COMPAREDIR,FillCnrs,FillDirList,CompNames)
    3839#pragma alloc_text(COMPAREDIR1,CompareDlgProc)
    3940#pragma alloc_text(COMPAREDIR2,SelectCnrs,ActionCnr)
     
    722723
    723724  return stricmp(fl1->fname,fl2->fname);
    724 }
    725 
    726 
    727 static int CompNames2 (const void *n1,const void *n2) {
    728 
    729   FILELIST      *fl1 = *(FILELIST **)n1;
    730   FILELIST      *fl2 = *(FILELIST **)n2;
    731   register CHAR *p1,*p2;
    732 
    733   p1 = strrchr(fl1->fname,'\\');
    734   if(p1)
    735     p1++;
    736   else
    737     p1 = fl1->fname;
    738   p2 = strrchr(fl2->fname,'\\');
    739   if(p2)
    740     p2++;
    741   else
    742     p2 = fl2->fname;
    743   return stricmp(p1,p2);
    744725}
    745726
Note: See TracChangeset for help on using the changeset viewer.