IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 5, 2006, 6:48:06 PM (20 years ago)
Author:
jhoblitt
Message:

update -search options
stub out -select

File:
1 edited

Legend:

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

    r9320 r9343  
    99
    1010static bool searchMode(pxConfig *config);
     11static bool selectMode(pxConfig *config);
    1112
    1213# define MODECASE(caseName, func) \
     
    2526    switch (config->mode) {
    2627        MODECASE(DETSELECT_MODE_SEARCH,        searchMode);
     28        MODECASE(DETSELECT_MODE_SELECT,        selectMode);
    2729        default:
    2830            psAbort(argv[0], "invalid option (this should not happen)");
     
    104106}
    105107
     108static bool selectMode(pxConfig *config)
     109{
     110    PS_ASSERT_PTR_NON_NULL(config, false);
     111
     112    return true;
     113}
Note: See TracChangeset for help on using the changeset viewer.