Changeset 1770 for trunk/dll/arccnrs.c
- Timestamp:
- Mar 30, 2014, 11:14:46 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/arccnrs.c
r1768 r1770 224 224 * This function should only be used for runemf2 calls that include the WAIT flag 225 225 */ 226 VOID WaitChildThread(VOID * arg) /*FOLD00*/226 VOID WaitChildThread(VOID * arg) 227 227 { 228 228 WAITCHILD *WaitChild; … … 265 265 } 266 266 267 static MRESULT EXPENTRY ArcErrProc(HWND hwnd, ULONG msg, MPARAM mp1, /*FOLD00*/267 static MRESULT EXPENTRY ArcErrProc(HWND hwnd, ULONG msg, MPARAM mp1, 268 268 MPARAM mp2) 269 269 { … … 358 358 } 359 359 360 static SHORT APIENTRY ArcSort(PMINIRECORDCORE pmrc1, PMINIRECORDCORE pmrc2, /*FOLD00*/360 static SHORT APIENTRY ArcSort(PMINIRECORDCORE pmrc1, PMINIRECORDCORE pmrc2, 361 361 PVOID pStorage) 362 362 { … … 436 436 } 437 437 438 static INT APIENTRY ArcFilter(PMINIRECORDCORE rmini, PVOID arg) /*FOLD00*/438 static INT APIENTRY ArcFilter(PMINIRECORDCORE rmini, PVOID arg) 439 439 { 440 440 DIRCNRDATA *dcd = (DIRCNRDATA *) arg; … … 471 471 } 472 472 473 static MRESULT EXPENTRY ArcFrameWndProc(HWND hwnd, ULONG msg, MPARAM mp1, /*FOLD00*/473 static MRESULT EXPENTRY ArcFrameWndProc(HWND hwnd, ULONG msg, MPARAM mp1, 474 474 MPARAM mp2) 475 475 { … … 477 477 } 478 478 479 static BOOL IsArcThere(HWND hwnd, CHAR * arcname) /*FOLD00*/479 static BOOL IsArcThere(HWND hwnd, CHAR * arcname) 480 480 { 481 481 if (arcname) { … … 496 496 */ 497 497 498 static VOID FreeArcItemData(PARCITEM pai) /*FOLD00*/498 static VOID FreeArcItemData(PARCITEM pai) 499 499 { 500 500 // DbgMsg(pszSrcFile, __LINE__, "FreeArcItemData %p", pai); … … 514 514 */ 515 515 516 static VOID RemoveArcItems(HWND hwnd, PARCITEM paiFirst, USHORT usCnt, USHORT usFlags) /*FOLD00*/516 static VOID RemoveArcItems(HWND hwnd, PARCITEM paiFirst, USHORT usCnt, USHORT usFlags) 517 517 { 518 518 INT remaining = usCnt; … … 560 560 */ 561 561 562 static VOID EmptyArcCnr(HWND hwnd) /*FOLD00*/562 static VOID EmptyArcCnr(HWND hwnd) 563 563 { 564 564 #if 0 // fixme to be gone or to be configurable … … 1006 1006 return numarcfiles; 1007 1007 } // FillArcCnr 1008 MRESULT EXPENTRY ArcTextProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2) /*FOLD00*/1008 MRESULT EXPENTRY ArcTextProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2) 1009 1009 { 1010 1010 static BOOL emphasized = FALSE; … … 1329 1329 } 1330 1330 1331 MRESULT EXPENTRY ArcClientWndProc(HWND hwnd, ULONG msg, MPARAM mp1, /*FOLD00*/1331 MRESULT EXPENTRY ArcClientWndProc(HWND hwnd, ULONG msg, MPARAM mp1, 1332 1332 MPARAM mp2) 1333 1333 { … … 1434 1434 } 1435 1435 1436 MRESULT EXPENTRY ArcObjWndProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2) /*FOLD00*/1436 MRESULT EXPENTRY ArcObjWndProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2) 1437 1437 { 1438 1438 DIRCNRDATA *dcd; … … 2288 2288 } 2289 2289 2290 static MRESULT EXPENTRY ArcCnrWndProc(HWND hwnd, ULONG msg, MPARAM mp1, /*FOLD00*/2290 static MRESULT EXPENTRY ArcCnrWndProc(HWND hwnd, ULONG msg, MPARAM mp1, 2291 2291 MPARAM mp2) 2292 2292 { … … 3561 3561 } 3562 3562 3563 MRESULT EXPENTRY ArcCnrMenuProc(HWND hwnd, ULONG msg, MPARAM mp1, /*FOLD00*/3563 MRESULT EXPENTRY ArcCnrMenuProc(HWND hwnd, ULONG msg, MPARAM mp1, 3564 3564 MPARAM mp2) 3565 3565 { … … 3648 3648 } 3649 3649 3650 HWND StartArcCnr(HWND hwndParent, HWND hwndCaller, CHAR * arcname, INT flags, /*FOLD00*/3650 HWND StartArcCnr(HWND hwndParent, HWND hwndCaller, CHAR * arcname, INT flags, 3651 3651 ARC_TYPE * sinfo) 3652 3652 { … … 3669 3669 3670 3670 if (strrchr(arcname, '.')) { 3671 if (!stricmp(strrchr(arcname, '.') + 1, "LZ") ) {3671 if (!stricmp(strrchr(arcname, '.') + 1, "LZ") && info->list == NULL) { 3672 3672 saymsg(MB_ENTER | MB_ICONASTERISK, HWND_DESKTOP, GetPString(IDS_LZIPLIMITATION), 3673 3673 GetPString(IDS_LZIPNOLIST));
Note:
See TracChangeset
for help on using the changeset viewer.