Ignore:
Timestamp:
Sep 4, 1999, 12:03:10 PM (26 years ago)
Author:
achimha
Message:

shell32/new compilation fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shell32/new/iconcache.cpp

    r793 r815  
    6969
    7070
    71 static HDPA             sic_hdpa = 0;
     71HDPA            sic_hdpa = 0;
    7272static CRITICAL_SECTION SHELL32_SicCS;
    7373
     
    576576        if (NULL != pDPA_GetPtr (sic_hdpa, 0))
    577577        {
    578           index = pDPA_Search (sic_hdpa, &sice, -1L, SIC_CompareEntrys, 0, 0);
     578          index = pDPA_Search (sic_hdpa, &sice, -1L, (PFNDPACOMPARE)SIC_CompareEntrys, 0, 0);
    579579        }
    580580
     
    682682          for (i=0; i < pDPA_GetPtrCount(sic_hdpa); ++i)
    683683          {
    684             lpsice = pDPA_GetPtr(sic_hdpa, i);
     684            lpsice = (LPSIC_ENTRY)pDPA_GetPtr(sic_hdpa, i);
    685685            SHFree(lpsice);
    686686          }
Note: See TracChangeset for help on using the changeset viewer.