- Timestamp:
- Jun 1, 2001, 10:22:10 AM (24 years ago)
- Location:
- trunk/src/shell32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shell32/iconcache.c
r5847 r5861 1 /* $Id: iconcache.c,v 1. 5 2001-06-01 01:13:23 phallerExp $ */1 /* $Id: iconcache.c,v 1.6 2001-06-01 08:22:09 sandervl Exp $ */ 2 2 /* 3 3 * shell icon cache (SIC) … … 785 785 if ( INVALID_INDEX == index ) 786 786 { 787 #ifdef __WIN32OS2__ 787 788 // 2001-06-01 PH memory leak in WINE 788 789 HeapFree(GetProcessHeap(),0,lpsice->sSourceFile); 789 790 #endif 790 791 SHFree(lpsice); 791 792 ret = INVALID_INDEX; … … 920 921 ImageList_SetBkColor(ShellSmallIconList, GetSysColor(COLOR_WINDOW)); 921 922 ImageList_SetBkColor(ShellBigIconList, GetSysColor(COLOR_WINDOW)); 922 923 924 #ifndef __WIN32OS2__ 923 925 /* 2001-06-01 PH pre-initializing the list takes 924 926 * a long time. On-demand loading of the icons should 925 927 * be sufficient! (7 secs on P133) 926 * 928 */ 927 929 for (index=1; index<46; index++) 928 930 { … … 937 939 SIC_IconAppend ("shell32.dll", index, hSm, hLg); 938 940 } 939 */ 941 #endif 940 942 941 943 TRACE("hIconSmall=%p hIconBig=%p\n",ShellSmallIconList, ShellBigIconList); -
trunk/src/shell32/shell32_main.c
r5852 r5861 1 /* $Id: shell32_main.c,v 1. 4 2001-06-01 01:46:30 phallerExp $ */1 /* $Id: shell32_main.c,v 1.5 2001-06-01 08:22:10 sandervl Exp $ */ 2 2 /* 3 3 * Shell basics … … 893 893 switch (fdwReason) 894 894 { 895 case DLL_PROCESS_ATTACH: 896 895 case DLL_PROCESS_ATTACH: 897 896 shell32_RefCount++; 898 897 if (shell32_hInstance) return TRUE; … … 914 913 /* initialize the common controls */ 915 914 InitCommonControlsEx(NULL); 916 915 917 916 SIC_Initialize(); 918 917 SYSTRAY_Init();
Note:
See TracChangeset
for help on using the changeset viewer.