IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 21, 2006, 2:30:44 PM (20 years ago)
Author:
jhoblitt
Message:

add -pending mode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/pztool.c

    r6662 r6669  
    8888{
    8989    PS_ASSERT_PTR_NON_NULL(config, false);
     90
     91    psArray *new = pzPendingFrameSearch(config);
     92    if (!new) {
     93        psError(PS_ERR_UNKNOWN, false, "no pzPendingFrames found");
     94        return false;
     95    }
     96
     97    bool status = pzPendingFramePrint(stdout, config, new);
     98    if (!status) {
     99        psError(PS_ERR_UNKNOWN, false, "pzPendingFramePrint() failed");
     100        return false;
     101    }
     102
     103    return true;
    90104}
    91105
Note: See TracChangeset for help on using the changeset viewer.