Changeset 1770 for trunk/dll/arccnrs.c


Ignore:
Timestamp:
Mar 30, 2014, 11:14:46 PM (11 years ago)
Author:
Gregg Young
Message:

Change to lzip code to allow a list file entry to work. Ticket 537

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/arccnrs.c

    r1768 r1770  
    224224 *  This function should only be used for runemf2 calls that include the WAIT flag
    225225 */
    226 VOID WaitChildThread(VOID * arg) /*FOLD00*/
     226VOID WaitChildThread(VOID * arg)
    227227{
    228228  WAITCHILD *WaitChild;
     
    265265}
    266266
    267 static MRESULT EXPENTRY ArcErrProc(HWND hwnd, ULONG msg, MPARAM mp1, /*FOLD00*/
     267static MRESULT EXPENTRY ArcErrProc(HWND hwnd, ULONG msg, MPARAM mp1,
    268268                                   MPARAM mp2)
    269269{
     
    358358}
    359359
    360 static SHORT APIENTRY ArcSort(PMINIRECORDCORE pmrc1, PMINIRECORDCORE pmrc2, /*FOLD00*/
     360static SHORT APIENTRY ArcSort(PMINIRECORDCORE pmrc1, PMINIRECORDCORE pmrc2,
    361361                              PVOID pStorage)
    362362{
     
    436436}
    437437
    438 static INT APIENTRY ArcFilter(PMINIRECORDCORE rmini, PVOID arg) /*FOLD00*/
     438static INT APIENTRY ArcFilter(PMINIRECORDCORE rmini, PVOID arg)
    439439{
    440440  DIRCNRDATA *dcd = (DIRCNRDATA *) arg;
     
    471471}
    472472
    473 static MRESULT EXPENTRY ArcFrameWndProc(HWND hwnd, ULONG msg, MPARAM mp1, /*FOLD00*/
     473static MRESULT EXPENTRY ArcFrameWndProc(HWND hwnd, ULONG msg, MPARAM mp1,
    474474                                        MPARAM mp2)
    475475{
     
    477477}
    478478
    479 static BOOL IsArcThere(HWND hwnd, CHAR * arcname) /*FOLD00*/
     479static BOOL IsArcThere(HWND hwnd, CHAR * arcname)
    480480{
    481481  if (arcname) {
     
    496496 */
    497497
    498 static VOID FreeArcItemData(PARCITEM pai) /*FOLD00*/
     498static VOID FreeArcItemData(PARCITEM pai)
    499499{
    500500  // DbgMsg(pszSrcFile, __LINE__, "FreeArcItemData %p", pai);
     
    514514 */
    515515
    516 static VOID RemoveArcItems(HWND hwnd, PARCITEM paiFirst, USHORT usCnt, USHORT usFlags) /*FOLD00*/
     516static VOID RemoveArcItems(HWND hwnd, PARCITEM paiFirst, USHORT usCnt, USHORT usFlags)
    517517{
    518518  INT remaining = usCnt;
     
    560560 */
    561561
    562 static VOID EmptyArcCnr(HWND hwnd) /*FOLD00*/
     562static VOID EmptyArcCnr(HWND hwnd)
    563563{
    564564#if 0 // fixme to be gone or to be configurable
     
    10061006  return numarcfiles;
    10071007} // FillArcCnr
    1008 MRESULT EXPENTRY ArcTextProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2) /*FOLD00*/
     1008MRESULT EXPENTRY ArcTextProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2)
    10091009{
    10101010  static BOOL emphasized = FALSE;
     
    13291329}
    13301330
    1331 MRESULT EXPENTRY ArcClientWndProc(HWND hwnd, ULONG msg, MPARAM mp1, /*FOLD00*/
     1331MRESULT EXPENTRY ArcClientWndProc(HWND hwnd, ULONG msg, MPARAM mp1,
    13321332                                  MPARAM mp2)
    13331333{
     
    14341434}
    14351435
    1436 MRESULT EXPENTRY ArcObjWndProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2) /*FOLD00*/
     1436MRESULT EXPENTRY ArcObjWndProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2)
    14371437{
    14381438  DIRCNRDATA *dcd;
     
    22882288}
    22892289
    2290 static MRESULT EXPENTRY ArcCnrWndProc(HWND hwnd, ULONG msg, MPARAM mp1, /*FOLD00*/
     2290static MRESULT EXPENTRY ArcCnrWndProc(HWND hwnd, ULONG msg, MPARAM mp1,
    22912291                                      MPARAM mp2)
    22922292{
     
    35613561}
    35623562
    3563 MRESULT EXPENTRY ArcCnrMenuProc(HWND hwnd, ULONG msg, MPARAM mp1, /*FOLD00*/
     3563MRESULT EXPENTRY ArcCnrMenuProc(HWND hwnd, ULONG msg, MPARAM mp1,
    35643564                                     MPARAM mp2)
    35653565{
     
    36483648}
    36493649
    3650 HWND StartArcCnr(HWND hwndParent, HWND hwndCaller, CHAR * arcname, INT flags, /*FOLD00*/
     3650HWND StartArcCnr(HWND hwndParent, HWND hwndCaller, CHAR * arcname, INT flags,
    36513651                 ARC_TYPE * sinfo)
    36523652{
     
    36693669
    36703670  if (strrchr(arcname, '.')) {
    3671     if (!stricmp(strrchr(arcname, '.') + 1, "LZ")) {
     3671    if (!stricmp(strrchr(arcname, '.') + 1, "LZ") && info->list == NULL) {
    36723672      saymsg(MB_ENTER | MB_ICONASTERISK, HWND_DESKTOP, GetPString(IDS_LZIPLIMITATION),
    36733673             GetPString(IDS_LZIPNOLIST));
Note: See TracChangeset for help on using the changeset viewer.